form{
    height: 80vh;
    border: white solid 2px;
    border-radius: 20px;
    width: 60%;

    display: flex;
    flex-direction: column;
    justify-self: cent              er;
    justify-content: space-around;
    align-items: center;                                                                                        
    align-self: center;

    margin: 20px;
    padding: 20px;

    text-align: center;
    
}

form>h1{
    color: white;
}

form>input{
    width: 60%;
    font-size: calc(2vh + 20px);
    border: white solid 1px;
    border-radius: 10px;
    padding-left: 20px;
}


form>input:focus{
    border-color: rgb(216, 54, 216);
    outline: none;
    border-width: 2px;
}

form>input:placeholder-shown:not(:focus){
    border-color: rgb(255, 5, 5);
    border-width: 2px;
}
form>input:valid{
    border-color: rgb(67, 216, 54);
    border-width: 2px;
}

form>div{
    display: flex;
    justify-content: space-evenly;
    width: 60%;
}

form>div>button{
    font-size: calc(2vh + 25px);
    border: white solid 2px;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    flex-basis: 45%;
}

form>div>button:hover{
    text-shadow:
    0 1px 1px rgba(16, 194, 207, 0.767),
    0 2px 4px rgba(16, 194, 207, 0.767);
    
    box-shadow:
    0 0 10px rgba(16, 194, 207, 0.767),
    0 0 30px rgba(16, 194, 207, 0.767),
    0 0 60px rgba(16, 194, 207, 0.767);

}

@media (max-width:1025px) {
    form{
        width: 98%;
        padding: 0px;
        height: 80vh;
    }
    form>div{
        width: 80%;
    }
}
@media (max-width:381px) {
    form{
        width: 98%;
        padding: 0px;
        height: 80vh;
    }
    form>div{
        width: 100%;
    }
}