* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./img/10.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ED8181;
}

.container-form {
    width: 100%;
    height: 100vh;
    position: relative;
    right: 300px;
    display: flex;
    justify-content: space-around;
    transition:  all .5s ease-out;
}

.welcome-back {
    display: flex;
    align-items: center;
    text-align: center;
}

.message {
    padding: 1rem;
}

.message h2 {
    font-size: 1.7rem;
    padding: 1rem 0;
}

.message button {
    padding: 1rem;
    font-weight: 400;
    background-color: #f9c963;
    border-radius: 3px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: .9rem;
    margin-top: 2rem;
    transition: all .3s ease-in;
    color: #fff;
}

.message button:hover {
    background-color: #8fcccf;
}

.formulario {
    width: 500px;
    padding: 1rem;
    margin: 2rem;
    /* background-color: rgb(51, 51, 51, 0.602); */
    text-align: center;
}
@media (max-width: 600px){
    .formulario {
        position: relative;
        left: 270px;
    }
    
   
}

.create-account {
    padding: 2.7rem 0;
    font-size: 1.9rem;
}

.iconos {
    width: 250px;
    display: flex;
    justify-content: space-around;
    margin: auto;
}

.border-icon {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: solid thin white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all .3s ease-in;
}

.border-icon:hover {
    background-color: #8fcccf;
    cursor: pointer;
}
.border-icon2 {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: solid thin white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all .3s ease-in;
    top: -250px;
    left: 40px;
    position: relative;
}

.border-icon2.message {
    background-color: #8fcccf;
    cursor: pointer;
}
.border-icon2 a{
    color: white;
    z-index: 9;
}
.border-icon2 a :hover{
    color: #ED8181;
}

.cuenta-gratis {
    padding: 2rem 0;
}

.formulario input {
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    background-color: transparent;
    border: none;
    border-bottom: white thin solid;
    text-align: center;
    outline: none;
    padding: .2rem 0;
    font-size: .9rem;
    color: white;
}

.formulario input[type="button"] {
    width: 60%;
    margin: auto;
    border: solid thin white;
    padding: .7rem;
    border-radius: 3px;
    background-color: transparent;
    font-weight: 600;
    margin-top: 3rem;
    font-size: .8rem;
    cursor: pointer;
    color: #ED8181;
}

.sign-in {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.sign-in.active {
    opacity: 1;
    visibility: visible;
}

.sign-up.active {
    opacity: 0;
    visibility: hidden;
}
