/* Reset básico */

/* Contenedor del logo */
.logo-container {
    position: fixed; /* Cambiamos a fixed para que no afecte al formulario */
    top: 20px;
    left: 20px;
    z-index: 1000; /* Para que siempre esté arriba */
}

/* Imagen del logo */
.logo-container img {
    width: 80px; /* O el tamaño que quieras */
    height: auto;
}


/* Estilo del botón de volver */
.back-btn {
    margin-top: 20px;
    padding: 12px;
    background-color: #f2f2f2;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.back-btn:hover {
    background-color: #0683e2;
    color: white;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Fondo general */
body {
    background: linear-gradient(135deg, #0683e2, #acb6e5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor principal */
.register-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 420px;
}

/* Título principal */
.welcome-message {
    text-align: center;
    font-size: 28px;
    color: #333333;
    margin-bottom: 10px;
}

/* Subtítulo */
.sub-message {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

/* Mensaje de error */
.error-message {
    background-color: #ffe0e0;
    color: #d32f2f;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

/* Estilo del formulario */
.register-form {
    display: flex;
    flex-direction: column;
}

/* Etiquetas */
.register-form label {
    font-size: 14px;
    color: #555555;
    margin-bottom: 5px;
    margin-top: 15px;
}

/* Campos de entrada */
.input-field {
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: #0712e6;
    outline: none;
}

/* Botón de enviar */
.submit-btn {
    margin-top: 25px;
    padding: 12px;
    background: linear-gradient(135deg, #0683e2, #acb6e5);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #acb6e5, #0683e2);
}

/* Enlace de inicio de sesión */
.register-link {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #555555;
}

.register-link a {
    color: #0683e2;
    text-decoration: none;
    font-weight: bold;
}

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