body{
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: var(--main-color)!important;
    align-items: center;
    justify-content: center;
}

.title{
    letter-spacing: 0px;
    color: white;
    font-size: 46px;
}

.submit{
    width: 100%;
    background-color: var(--main-color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    border: none;
    transition: .4s;
}

input{
    background: transparent;
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px;
    border: 3px solid white;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    -webkit-text-fill-color:white;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    color: white;
}

input, input::placeholder{
    color: white;
    font-size: 18px!important;
    font-weight: normal;
}

small{
    color: white;
}

.submit:hover, .submit:focus{
    box-shadow:   0px 0px 15px 0px rgba(0, 0, 0, 0.4);
}