/* =================================================================
   ZYRON BEAUTY - ESTILO FINAL PREMIUM
   ================================================================= */

/* FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Cinzel:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

/* BASE */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FONDO */
.background-media {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY ROSA */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(128,0,0,0.55), rgba(255,182,193,0.45));
    z-index: -1;
}

/* =========================
   TÍTULO
========================= */
.titulo-container {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* BIENVENIDOS */
.titulo-container h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.6em;
    letter-spacing: 6px;
    color: #f3e2c7;
    margin: 0 0 5px 0;
    font-weight: 400;
}

/* ZYRON (ESTILO LUJO) */
.titulo-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5.8em;
    font-weight: 600;
    margin: 0;

    letter-spacing: 2px;

    background: linear-gradient(to bottom, #f8e7b0, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* FRASE */
.titulo-container p {
    font-size: 0.8em;
    letter-spacing: 3px;
    color: #f1d8c9;
    margin-top: 5px;
}

/* =========================
   FORMULARIO
========================= */
form {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 360px;
    padding: 30px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* =========================
   INPUTS CON ICONOS
========================= */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

/* ICONOS */
.input-group i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b1e2d;
    font-size: 16px;
    pointer-events: none;
}

/* INPUT */
.input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(128,0,0,0.4);
    background: transparent;

    padding: 12px 0 12px 38px;
    font-size: 14px;
    color: #5a0f1a;

    line-height: 1.4;
    box-sizing: border-box;
}

/* PLACEHOLDER */
.input-group input::placeholder {
    color: #8a5a5a;
}

/* FOCUS */
.input-group input:focus {
    outline: none;
    border-bottom: 2px solid #8b1e2d;
}

/* =========================
   BOTÓN
========================= */
input[type="submit"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;

    background: linear-gradient(to right, #8b1e2d, #a83244);
    color: white;

    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;

    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* HOVER */
input[type="submit"]:hover {
    background: linear-gradient(to right, #a83244, #8b1e2d);
    transform: translateY(-2px);
}

/* =========================
   LINK
========================= */
a {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #7a1f2b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}