body {
    background: linear-gradient(135deg, var(--desert-sand) 0%, var(--olivine-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(32, 38, 55, 0.2);
}

.illustration-section {
    flex: 1;
    background: linear-gradient(135deg, var(--myrtle-green-light) 0%, var(--myrtle-green) 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.illustration-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.illustration-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.illustration {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.form-section {
    flex: 1;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: block;              
    margin: 0 auto;   
    width: 200px;  
    margin-bottom: 10px;              
    max-width: 60%;                        
}

.form-section h1 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 800;
}

.subtitle {
    color: var(--space-cadet-light);
    font-size: 15px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

#email {
    width: 90%;
    padding: 14px 16px;
    border: 2px solid #d6c8c8;
    border-radius: 10px;
    font-size: 15px;
    color: var(--space-cadet);
}

#email:focus {
    outline: none;
    border-color: var(--olivine);
    box-shadow: 0 0 0 4px rgba(139, 177, 116, 0.1);
}

#email::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--space-cadet-light);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(200, 207, 195, 0.3);
}

.submit-btn:hover {
    transform: translateY(-4px);
	background: var(--space-cadet);
    box-shadow: 0 10px 20px rgba(1, 1, 1, 0.4);
}

.back-to-login {
    text-align: center;
    margin-top: 25px;
}

.back-to-login a {
    color: var(--myrtle-green);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

.back-to-login a:hover {
    color: var(--olivine);
}

.info-box {
    padding: 16px;
    border-radius: 10px;
    margin-top: 20px;
}

.info-box p {
    font-size: 13px;
    color: black;
    margin-top: 10px;
    margin: 0;
}

#code {
    width: 90%;
    padding: 14px;
    border: 2px solid #d6c8c8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    color: var(--space-cadet);
    transition: all 0.3s ease;
}

#code:focus {	
    border-color: var(--olivine);
    box-shadow: 0 0 0 5px rgba(139, 177, 116, 0.15);
}

#code::placeholder {
    color: #bbb;
}

.info-box a{
	color: var(--space-cadet);
	font-weight: bold;
	font-size: 16px;
	display: inline-block; 
}

.info-box a:hover{
	color: var(--space-cadet-light);
	transform: translateY(-2px);
}


@media (max-width: 800px) {
    .container {
        flex-direction: column;  
		width: 100vw;
		min-height: 100vh;
    }

    .illustration-section {
        display:none;
    }

	body{
		background: white;
		display: block;
        padding: 0;
        margin: 0;
		overflow: hidden; 
	};

    .form-section {
        padding: 40px 30px;
    }

    .form-section h1 {
        font-size: 26px;
    }

    .logo {
        width: 150px;
    }
}