#reg-div{
    width: 30%;
    height: 60vh;
    border-radius: 20px;
    margin: 0 auto;
    margin-top: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    padding-top: 2%;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-group input{
    width: 110%;
    font-size: 18px;
    border-radius: 10px;
    padding-left: 2%;
    border: 1px solid black;
}
.form-group input:focus{
    outline-color: #18bc9c;
}
#reg-submit{
    border: 0px;
    background-color: #18bc9c;
    cursor: pointer;
    height: 12%;
    border-radius: 5px;
    width: 100%;
    color: white;
    font-size: 17px;
    margin-left: 5%;
    margin-top: 2%;
}
#reg-submit:hover{
    background-color: #15a589;
}
.form-errors{
    margin-top: 5%;
}
#show-pw{
    margin-top: 1%;
    width: 11%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-image: url('/static/images/vis_off.png');
    background-size: cover;
    cursor: pointer;
}
@media (max-width: 768px){
    #reg-div{
        width: 95%;
        height: 60vh;
        padding-top: 5%;
    }
    #reg-div h1{
        font-size: 25px;
    }
}