body{
    margin: 0;
    font-family: 'Open sans';
    background: #ffffff;
    color: #111827;
}        
        
.page{
    max-height: 100dvh;
    display: grid;
    grid-template-rows: 80px 1fr;
}

.header{
    padding: 0 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    box-sizing: border-box;
}

.logo{
    height: 42px;
}

.main{
    height: calc(100dvh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.left{
    padding-top: 32px;    
    padding-right: 20%;
    padding-left: 20%;
    box-sizing: border-box;
    height: calc(100dvh - 80px);
}
        
.right{
	height: calc(100dvh - 80px);
}

.side-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.separator{
    height: 1px;
    background: #e5e7eb;
    margin-top: 16px;
    margin-bottom: 24px;
}

.login-button{
    display: block;
    padding: 14px;
    margin-top: 24px;
    text-align: center;
    background: linear-gradient(90deg, #007a33, #00a651);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.login-button:hover{
    opacity: 0.9;
}

.info-box{
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #797C80;
    font-weight: normal;
    height: fit-content;
}
        
.info-box p{
    line-height: 150%;
    margin-bottom: 0px;
    margin-top: 8px;
}

.info-box h3{
    margin: 0 0 3px 0;
    font-size: 16px;
    font-weight: bold;
	color: #0F0F0F;
}

.subtitle{
    margin-top: 6px;
    margin-bottom: 5px;
    font-size: 18px;
	font-weight: normal;
	color: #0F0F0F;
}

.main h1{
    margin: 0;
    font-size: 30px;
    font-weight: 800;
}