/* === Estilo Glass Minimal Global === */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0d0f13, #1a1f27);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eaeaea;
}

.container {
    width: 350px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: #82d0ff;
}

p {
    margin-top: 0;
}

label {
    font-size: 14px;
    color: #b5c0d0;
    display: block;
    margin-bottom: 4px;
}

input {
    width: 100%;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    outline: none;
    color: #fff;
    font-size: 15px;
}

input::placeholder {
    color: #9db3c9;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #29b6f6, #0288d1);
    color: white;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
}

button:hover {
    background: linear-gradient(135deg, #4fc3f7, #039be5);
    transform: scale(1.03);
}

button.btn-rojo {
    background: #e53935;
}

button.btn-rojo:hover {
    background: #c62828;
    transform: scale(1.03);
}

.link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.link a {
    color: #82d0ff;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}
