/* auth/login.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #050505;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.login-container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.login-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-area img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 124, 240, 0.4));
}

h1 {
    font-size: 1.8rem;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Formulario */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    padding-left: 5px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #007CF0;
    box-shadow: 0 0 0 4px rgba(0, 124, 240, 0.1);
    background: #161616;
}

/* Botón Entrar */
.btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #007CF0, #00DFD8);
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 223, 216, 0.3);
}

.footer-text {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #555;
}
.footer-text a {
    color: #007CF0;
    text-decoration: none;
}