/* ----- RESET ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #2A292A; /* Fondo de tu landing */
    color: #B7B6B7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* ----- CARD ----- */
.register-container {
    background: #333233; /* Igual que cards de beneficios */
    padding: 40px;
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    text-align: center;
}

.register-container h2 {
    margin-bottom: 25px;
    font-size: 26px;
}

/* ----- INPUT GROUP ----- */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #B7B6B7;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: none;
    border-radius: 6px;
    background: #B7B6B7;
    color: #222;
    font-size: 15px;
}

.input-group input:focus {
    outline: 2px solid #CC354F;
}

/* ----- BUTTON ----- */
.btn-register {
    width: 100%;
    background: #CC354F;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.btn-register:hover {
    background: #B02D44;
}

/* ----- FOOTER LINKS ----- */
.register-footer {
    margin-top: 16px;
    font-size: 14px;
}

.register-footer a {
    color: #CC354F;
    text-decoration: none;
}

.register-footer a:hover {
    text-decoration: underline;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 420px) {
    .register-container {
        width: 90%;
    }
}