body {
    width: 100%;
    margin: 0;
    font-family: Tahoma;
    font-size: 16px;
    background-color: #E3E3FF;
    text-align: center;
}

h1, p {
    margin: 1em auto;
    text-align: center;
}

form {
    position: relative;
    top: 70px;
    background-color: #8787C5;
    width: 60vw;
    max-width: 500px;
    min-width: 300px;
    margin: 0 auto;
    padding-bottom: 2em;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
}

h1 {
    padding-top: 40px;
}

.names {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 99%;
}

input {
    color: #ACACAC;
    width: 95%;
    border-radius: 6px;
    border: 0px;
    padding: 0px 10px;
    margin-bottom: 20px;
    height: 2.3rem;
}

input:focus {
    outline: none;  
    border: none;   
}

a {
    color: #dfdfe2;
}

.check {
    width: 2rem;
    height: 1rem;
}

button {
    width: 10rem;
    height: 30px;
    border-radius: 10px;
    border: 0px;
    color: #857D7B;
    margin-bottom: 20px;
    align-self: center;
}

@media screen and (max-width: 784px) {
    form {
        width: 90%;
        margin: 20px auto;
        top: 50px;
    }
}
