html, body {
    overflow: hidden !important;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    margin-left: -25%;
    background: url('../images/login-asset.png') no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    padding: 2rem;
    min-height: 100vh;
}

.logo {
    width: 150px;
    margin-bottom: 2rem;
}

.login-form-container {
    color: #d98238;
    padding: 3rem;  
    border-radius: 20px;
    width: 600px;
    margin: 0 auto;
    margin-right: 18%;
    margin-top: 6%;
}

.forgot-password-title {
    color: var(--primary-white);
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
    text-shadow: -1px 0px 6px rgba(0,0,0,0.52);
}

.forgot-password-subheading{
    color: var(--primary-white);
    font-size: 2rem;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.forgot-password-instructions{
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    margin-bottom: 2rem;
}   

.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.otp-input {
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fcf9ea;
    outline: none;
    transition: border-color 0.3s ease;
}

.otp-input:focus {
    border-color: #ff9900;
    box-shadow: 0 0 5px rgba(255, 153, 0, 0.3);
}

.otp-input:valid {
    border-color: #28a745;
}   

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group label span {
    color: #FF4444;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: #fcf9ea;
    font-size: 1rem;
    box-sizing: border-box;
    font: inherit;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.return-to-login {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
}   

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #ff9900 0%, #d98238 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    font: inherit;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.login-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.1s ease;
}

.login-divider {
    border: none;
    border-top: 3px solid #d98238;
    margin: 1.5rem 0 0.5rem 0;
    opacity: 0.3;
}

.logo-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.logo-container .logo {
    width: 120px;
    height: auto;
    margin: 0;
    display: block;
}

@media (max-width: 1024px) {
    body::before {
        width: 100%;
        clip-path: none;
    }

    .login-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .welcome-section {
        margin-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .login-form-container {
        width: 100%;
        max-width: 400px;
    }
}