:root {
    --dole-blue: #0056b3;
    --dole-yellow: #ffc107;
    --dole-dark-blue: #003366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    min-height: 100vh;
}

.login-container {
    display: flex;
    width: 100%;
}

.login-left {
    flex: 1;
    background: linear-gradient(135deg, var(--dole-dark-blue) 0%, var(--dole-blue) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.login-left-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.login-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.login-logo img {
    height: 70px;
}

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dole-dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-control {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.form-control:focus {
    border-color: var(--dole-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.btn-login {
    background-color: var(--dole-blue);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-login:hover {
    background-color: var(--dole-dark-blue);
    color: white;
}

.password-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.forgot-password {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
}

.forgot-password a {
    color: var(--dole-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.input-group-text {
    background-color: #f1f3f4;
    border: 1px solid #ddd;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-left {
        padding: 2rem 1rem;
    }
    
    .login-left-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .login-card {
        padding: 1.5rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .remember-me {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .forgot-password {
        position: static;
        margin-top: 5px;
    }
}