/* Estilos generales */
body {
    background-color: #121212;
    color: #FFD700;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header nav a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 10px;
}

header nav a:hover {
    text-decoration: underline;
}

/* Contenedor principal */
main {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 30px;
    width: 320px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Logo y título */
.logo-container img {
    width: 80px;
    margin-bottom: 10px;
}

.logo-container h1 {
    font-size: 1.5em;
    margin: 10px 0;
}

.logo-container h2 {
    font-size: 1.2em;
    color: #FFD700;
}

/* Formulario */
form h2 {
    margin-bottom: 15px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2b2b2b;
    color: #fff;
}

form p {
    color: #FFD700;
    font-size: 0.9em;
    margin: 10px 0;
}

/* Ajustes específicos para el texto de depósito y selector de archivo */
.deposit-info {
    color: #FFD700;
    font-size: 0.9em;
    margin: 10px 0;
    text-align: center;
}

input[type="submit"] {
    background-color: #FFD700;
    color: #1e1e1e;
    border: none;
    padding: 12px;
    font-weight: bold;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #e6b800;
}
