﻿body {
    background-color: #f9fafb;
    font-family: 'Segoe UI', sans-serif;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-card {
    background-color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 380px;
    text-align: center;
}
.reset-password-card {
    background-color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    text-align: center;
}
.logo img {
    width: 50px;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

    .input-group .form-control {
        width: 100%;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        border: 1px solid #ced4da;
        border-radius: 6px;
        font-size: 0.95rem;
    }

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.btn-ingresar {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--navy-banner); /* Color branding azul */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-ingresar:hover {
        background-color: var(--navy-light); /* Color branding azul */
    }

.olvido-link {
    margin-top: 1rem;
    font-size: 0.9rem;
}

    .olvido-link a {
        color: #444;
        text-decoration: none;
    }
