:root {
    --primary-color: #f7a400;
    --primary-dark: #e69500;
    --secondary-color: #2c3e50;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f5f5f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 0 15px;
}

.login-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 25px;
    text-align: center;
}

.logo-login {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.login-body {
    background-color: white;
    padding: 30px;
}

.form-control {
    height: 45px;
    border-radius: 5px;
    padding-left: 40px;
}

.input-group-text {
    position: absolute;
    z-index: 4;
    height: 45px;
    background: transparent;
    border: none;
    color: #aaa;
}

.btn-login {
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
    color: white;
    height: 45px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 164, 0, 0.3);
}

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

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

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
    color: #aaa;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
    z-index: -1;
}

.divider span {
    background-color: white;
    padding: 0 15px;
}

/* Efectos de foco en los inputs */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(247, 164, 0, 0.25);
}

/* Versión responsive */
@media (max-width: 576px) {
    .login-card {
        box-shadow: none;
    }
    
    body {
        background-color: white;
    }
}