﻿/* === Auth Layout Styles === */
body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at 30% 20%, #010a26 0%, #003b66 50%, #001a33 100%);
    background-attachment: fixed;
    color: #fff;
    height: 100vh;
    margin: 0;
}

/* === Centrado del contenedor principal === */
.auth-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === Tarjeta del formulario === */
.auth-card {
    background: rgba(30, 30, 45, 0.9);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    width: 380px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.25);
}

/* === Logo === */
.auth-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.5));
}

/* === Inputs === */
.form-control {
    border: 1px solid #444;
    border-radius: 8px;
    transition: 0.3s;
}

    .form-control:focus {
        border-color: #00bfff;
        box-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
    }

/* === Botón principal === */
.btn-primary {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    border: none;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: scale(1.03);
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
    }

/* === Footer === */
.auth-footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 0.85rem;
}
