*{
    padding: 0;
    margin: 0;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    animation-duration: .3s;
    transition-duration: .3s;
}
:root{
    --back-ground-color: rgb(250, 255, 250);
    --main-color: #00b7ef;
    --text-color: #4B4B4B;
    --border-grey-color:rgb(229, 229, 229);
    --white: white;
    --not-main-color: #4d6df3;
    --some-gray: #bdbdbd;
}
body{
    background-color: var(--not-main-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100vh;
}
.foto{
    width: 30%;
}
.block{
    background-color: var(--white);
    width: 40%;
    box-shadow: var(--text-color) 10px 0 6px;
    /* height: 60vh; */
    border: 1px var(--text-color) solid;
    border-radius: 10px;
}
.text{
    color: var(--not-main-color);
    display: block;
    text-align: center;
    margin: auto;
    font-size: 45px;
    padding: 20px;
}
.input{
    display: block;
    margin: auto;
    width: 80%;
    height: 30px;
    border-radius: 10px;
    border: 1px var(--border-grey-color) solid;
    /* margin-bottom: 10px; */
    padding: 0 10px;
}
.button{
    background-color: var(--not-main-color);
    color: var(--white);
    display: block;
    margin: auto;
    width: 60%;
    font-size: 28px;
    /* height: 30px; */
    border-radius: 10px;
    border: 1px var(--border-grey-color) solid;
    margin-bottom: 20px;
    padding: 3px;
}
.already{
    width: 100%;
    display: block;
    color: var(--text-color);
    margin: 10px;
    text-align: center;

}
#error-message{
    margin: auto;
    display: block;
    text-align: center;
}
.problem{
    margin: 0 auto 15px;
    text-align: center;
    color: red;
}
@media only screen and (max-width: 700px) {
    .foto{
        display: none;
    }
    .block{
        width: 80%;
    }
}
