/* Custom Login Page Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d4557 0%, #2b8da8 100%);
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    display: flex;
}

.login-left {
    background: linear-gradient(135deg, #0d4557 0%, #2b8da8 100%);
    padding: 60px 40px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.login-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.login-features {
    margin-top: 40px;
}

.login-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.login-feature i {
    font-size: 24px;
    margin-right: 15px;
}

.login-right {
    padding: 60px 40px;
    flex: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    font-size: 3rem;
    color: #0d4557;
    margin-bottom: 10px;
}

.login-header h2 {
    color: #0d4557;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating label {
    color: #666;
}

.form-control:focus {
    border-color: #2b8da8;
    box-shadow: 0 0 0 0.2rem rgba(43, 141, 168, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #0d4557 0%, #2b8da8 100%);
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 69, 87, 0.4);
    background: linear-gradient(135deg, #0a3644 0%, #1e6b80 100%);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 8px;
}

.forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #2b8da8;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    color: #0d4557;
    text-decoration: underline;
}

.alert {
    border-radius: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        padding: 40px 30px;
    }

    .login-right {
        padding: 40px 30px;
    }

    .login-left h1 {
        font-size: 2rem;
    }
}