body {
    background-color: #0d0d0d;
    font-family: 'Arial', sans-serif;
}

.register-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 10px;
    background: #1a1a1a;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.register-container form {
    width: 100%;
}

.register-container input[type="email"],
.register-container input[type="password"] {
    width: 100%;
    padding: 12px 40px;
    margin: 12px 0;
    border: 1px solid #aaa;
    border-radius: 8px;
    background-color: #2b2b2b;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

.register-container input::placeholder {
    color: #dddddd;
    font-family: inherit;
    font-weight: normal;
}

.register-container input[type="email"] {
    background: url('../img/Correo-logo.png') no-repeat 10px center;
    background-size: 20px;
}

.register-container input[type="password"] {
    background: url('../img/Contrasena-logo.png') no-repeat 10px center;
    background-size: 20px;
}

.register-container button {
    width: 100%;
    height: 44px;
    margin: 10px 0;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
    font-family: inherit;
    text-align: center;
    line-height: 44px;
    padding: 0;
}

.register-container button[name="register"] {
    background-color: #F84949;
    color: #fff;
}

.register-container button[name="register"]:hover {
    background-color: #DF4242;
}

/* Enlace como botón con icono Google */
.register-container .google-register,
.register-container a.google-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    margin: 10px 0;
    font-size: 14px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-family: inherit;
    box-sizing: border-box;
    transition: background 0.3s ease;
    gap: 8px;
}

.register-container .google-register:hover {
    background-color: #f0f0f0;
}

.register-container .google-register::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../img/Google-logo.png') no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

.register-container .terms {
    font-size: 13px;
    color: #aaa;
    margin-top: 20px;
    line-height: 1.5;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.register-container .error-message {
    color: #ff4444;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    display: block;
}

.titulo-pagina {
    text-align: center;
    color: #ffffff !important;
}
