/* ===== LOGIN CON POPPINS E INTER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== TIPOGRAFÍA ===== */
body, p, span, div, button, input, a, label {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fbfaf7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

/* ===== TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #161616;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-img {
    height: 40px;
}

/* ===== CONTENEDOR ===== */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 80px;
    gap: 50px;
    flex-wrap: wrap;
}

/* ===== LADO IZQUIERDO ===== */
.left-side {
    flex: 1;
    min-width: 280px;
}

.left-side h1 {
    font-size: 48px;
    font-weight: 800;
    color: #161616;
    line-height: 1.1;
}

.left-side h1 span {
    color: #029e99;
}

.left-side p {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
    max-width: 400px;
}

/* ===== TARJETA ===== */
.auth-card {
    background: white;
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 420px;
    border-top: 6px solid #029e99;
}

.card-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #161616;
    margin-bottom: 5px;
}

.card-title p {
    color: #888;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ===== FORMULARIO ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.input-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 0 15px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.input-box:focus-within {
    border-color: #029e99;
    background: white;
}

.input-box .icon {
    font-size: 18px;
    margin-right: 12px;
    color: #888;
}

.input-box input {
    width: 100%;
    padding: 14px 0;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.forgot {
    text-align: right;
    margin-bottom: 25px;
}

.forgot a {
    color: #029e99;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #029e99, #59d2ec);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(2, 158, 153, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        gap: 30px;
    }

    .left-side h1 {
        font-size: 36px;
    }

    .auth-card {
        padding: 30px 20px;
    }
}