@import url(https://fonts.googleapis.com/css?family=Open+Sans);

*{
   font-family: 'Open Sans',serif;
}


body {
    background: black;
    display: flex;
    justify-content: center;
    background-image: url(img/fondo/fondo-sign_in.jpg);
    background-repeat: repeat;
}


.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    height: 38rem;
    width: 33rem;
    background-color: rgba(41, 39, 39, 0.7);
    box-shadow: 0 5px 30px black;     
}

.titulo-principal{
    color: #ffdddd;
}

.contenedor {
    display: flex;
}

input {
    text-align: center;
    background: transparent;
    font-size: 18px;
    color: #ffdddd;
    padding: 0.25rem 1.875rem;
    border: none;
    border-bottom: 2px solid #e1d4d4;
}

input::placeholder{
    color: #ffdddd;
    font-size: 1.125rem;
}

.registro {
    padding: 0.75rem 0;
}

.registro a{
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ceaed5;
    color: black;
    border-radius: 0.938rem;
    width: 15rem;
    height: 3rem;
    font-weight: bold;
}

.registro a:hover{
    transition: all 0.5s;
    padding: 0.313rem 0.625rem;
}

.form-bottom  {
    display: flex;
    text-decoration: none;
    gap: 1.063rem;
    align-items: center;
}

.facebook {
    background-color: #3b5998;
    border-radius: 0.313rem;
    display: flex;
    align-items: center;
    height: 2rem;
    width: 10.5rem;
    gap: 0.438rem;
}

.facebook img {
    width: 1.875rem;
}

a {
    text-decoration: none;
    color:white;
}

.cuenta {
    font-size: 1.125rem;
}

.cuenta:hover{
    text-decoration: underline;
}


@media (max-width: 500px) {

    .form-bottom {
        display: flex;
        flex-direction: column;
    }

}


/* ------------ LOGIN ---------------  */


.form-login {
    padding-top: 1.25rem;
    gap: 1.75rem;
    height: 36rem;
    width: 31rem;
}

.password .checkbox{
    font-size: 1.125rem;
    color:white;
}

.checkbox{
    font-size: 1.125rem;
    color:white;
}

.registro-login{
    padding: 0;
}

.password:hover {
    text-decoration: underline;
}

.contenido-login {
    background-image: url("img/fondo/fondo-login.jpg");
}


.home {
    background-color: #ceaed5;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    padding: 0.625rem;
    gap: 0.438rem;
    margin: 0 0 1.5rem 0;
    transition: all 0.5s;
}

.home img {
    width: 30px;
}

.home a {
    color: black;
    font-size: 1.125rem;
    font-weight: bold;
}

.home:hover{
    transition: all 0.5s;
    padding: 0.938rem 1.25rem;
} 