* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2a3f54;
    overflow: hidden;
    padding: 20px;
}

#video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 400px;
    background: #c7c6d096;
    /* Color original con transparencia */
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    color: #2a3f54;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
}

p {
    color: #333;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.form-input {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0 15px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    text-align: center;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: #2a3f54;
}

.btn-enviar {
    width: 100%;
    height: 50px;
    background: #2a3f54;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-enviar:hover {
    background: #1a2735;
    transform: translateY(-2px);
}

.btn-regresar {
    display: inline-block;
    margin-top: 20px;
    color: #2a3f54;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.btn-regresar:hover {
    text-decoration: underline;
}

.icon-lock {
    font-size: 40px;
    color: #2a3f54;
    margin-bottom: 15px;
}