/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

html{
    background-color: whitesmoke;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    background-color: whitesmoke;
    color: #333;
}

.container{
    width: 30dvw;
    height: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.form-box {
    padding: 30px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0,0, 0.1);
    display: none;
}

.form-box.active{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#unos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


h2 {

    font-size: 34px;
    text-align: center;
    margin-bottom: 20px ;
}

input{
    margin-top: 8%;
    border-radius: 8px;
    width: 110px;
    padding: 0.3rem;
}

button[ type = submit ]{
  background-color: #faf6f6;
  border: 0;
  color: #242424;
  border-radius: 0.5em;
  font-size: 1rem;
  padding: 0.375em 1em;
  font-weight: 550;
  text-shadow: 0 0.0625em 0 #fff;
  box-shadow: inset 0 0.0625em 0 0 #f4f4f4, 0 0.0625em 0 0 #efefef,
    0 0.125em 0 0 #ececec, 0 0.25em 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede,
    0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
  transition: 0.15s ease;
  cursor: pointer;
}

button[ type = submit]:active {
  translate: 0 0.225em;
  box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef,
    0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede,
    0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;
}

button{
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50%;
    margin-top: 20%;
    transition: 0.5s;
}

p{
    font-size: 14.5px;
    text-align: center;
    margin-bottom: 10px;

}

p a{
    color: #7494ec;
    text-decoration: none;
}


 p a:hover{
    text-decoration: underline;
 }


.error-message {
    padding: 12px;
    background: #f8d7da ;
    border-radius: 6px;
    font-size: 16px;
    color:#a42843;
    text-align: center;
    margin-bottom: 20px;
}

h1{
    font-size: 50px;
}

span {
    color: #7494ec;

}


.box p {
    font-size: 22px;
}

.box button {
    display: block;
    width: 300px;
    margin: 0 auto;
}


@media screen and (max-width: 900px) {
    body{
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 500px) {
    body{
        max-height: 100dvh;
        padding-left: 1%;
        padding-right: 1%;
        font-size: 1.1rem;

    }

    input[ type = "text"]{
        width: 80px;
    }
}