@import url('../../css/variables.css');

body {
    margin: 0;
    padding: 0;
    display: flex; 
    justify-content: center; 
    background-color: #f1f2f2;
    font-family: var(--smallfont);
}
.login-container{
    margin-top: 100px;
    padding: 10px !important;
}

h1{
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    font-family: var(--bigfont);
    text-transform: uppercase;
}
form{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    padding: 0 20px;
}
form div{
    margin-top: 15px;
}
form input{
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: none;
    background-color: rgb(238, 232, 232);
}
.forgot-password{
    font-size: 14px;
}
form button{
    background-color: black;
    color: white;
}
form button{
    padding: 12px;
    width: 50%;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}
a{
    color: rgb(62 148 196);
    text-decoration: none;
}
a:visited{
    color: rgb(62 148 196);    
}
.terms{
    font-size: 14px;
    text-align: center;
}
.password{
    display: flex;
    gap: 10px;
}
.all-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

ul{
    list-style: none;
    text-align: center;
    padding: 0;
    color: red;
}

.container-type{
    display: flex;
    gap: 5px;
}

.container-type div{
    flex: 1;
}
.container-type a {
    flex: 1;
    display: flex;
    justify-content: center;
    color: white;
    padding: 10px;
}
input#id_urlDni {
    background-color: white;
}

.container-register-button {
    border: 4px solid #179C81;
    border-radius: 15px;
} 