@font-face {
    font-family: "FFMetaBold";
    src: url("fonts/FF-Meta-Pro-Bold.ttf");
}

@font-face {
    font-family: "Alegraya-Regular";
    src: url("fonts/Alegreya-Regular.ttf");
}

body {
    font-family: Arial, sans-serif;
    background-color: #002856;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-image: url('background-image.jpg'); /* Ajusta la URL al fondo deseado */
    background-size: cover;
    padding: 20px;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form button,
.additional-options,
.login-form p {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-form button {
    background-color: #A51008;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.additional-options a {
    color: #bbb;
    text-decoration: none;
}

.login-form label {
    color: #fff;
    margin-bottom: 10px;
}
