* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.login-page {
    display: flex;
    min-height: 100vh;
    background-color: #f8faff;
}


.form-container {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
}

.form-box {
    width: 100%;
    max-width: 420px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}


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

.input-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.input-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.password-wrapper {
    position: relative;
}

.pass-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px; 
    color: #888;
    user-select: none;
}


.options-row {
    margin-bottom: 25px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
    user-select: none;
}

.checkbox-container input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}


.policy-text {
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 30px;
}

.policy-text a {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #c4c4c4;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.footer-links {
    text-align: center;
}

.forgot-pass {
    display: block;
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bold-link {
    color: #1a1a1a;
    font-weight: 700;
}


.sidebar {
    position: relative;
    flex: 1;
    background: 
        linear-gradient(135deg, rgba(20, 22, 60, 0.85) 0%, rgba(50, 40, 110, 0.7) 100%),
        url('img/background.png');
    background-size: cover;
    background-position: center;
    
    
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
    
    
    display: flex;
    align-items: center;      
    justify-content: flex-end; 
    padding-right: 5%;        
}

.sidebar-text {
    
    width: 60%; 
}

.sidebar-text h1 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    font-size: 2.5vw; 
    white-space: nowrap; 
    margin: 0;
}


@media (max-width: 900px) {
    .sidebar { display: none; }
}



.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #E0E0E0; 
    color: #FFFFFF;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: not-allowed; 
    transition: all 0.3s ease;
    margin-top: 20px;
}


.submit-btn.active {
    background-color: #1A1C41; 
    cursor: pointer;
}

.submit-btn.active:hover {
    background-color: #2a2d61;
}