* {
    color: black;
    font-family: sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor {
    padding: 100px 75px;
    border-radius: 20px;
    box-shadow:
        0 0 10px rgb(0, 0, 61),
        0 0 20px rgb(0, 0, 61),
        0 0 40px rgb(0, 0, 61),
        0 0 80px rgba(0, 0, 61, 0.6);
}

.logo {
    width: 175px;
    display: block;
    margin: auto;
    margin-top: -55px;
    margin-bottom: 50px;
}

.login-titulo {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.input-grupo {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 300px;
}

.label {
    font-weight: bold;
    margin-bottom: 5px;
}

.input {
    padding: 5px;
    border: 1px solid rgb(0, 0, 61);
    border-radius: 5px;
}

.boton {
    display: flex;
    justify-content: center;
}

.boton-login {
    margin-top: 25px;
    text-decoration: none;
    background-color: rgb(0, 0, 61);
    color: white;
    border-radius: 10px;
    padding: 13px;
    margin-bottom: -25px;
    font-size: 15px;

    border: none;
}

.boton-login:hover {
    background-color: blue;
}

/*REGISTRO*/
.registro-link {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: -40px;
}

.registro-link a {
    text-decoration: none;
    color: rgb(0, 0, 61);
}

.registro-link a:hover {
    color: blue;
}