.form-container{
    display:flex;
    align-items: center;
    flex-direction: column;
    width:100%;
    padding:20px;
    z-index: 1;
    position: relative;
    
}
h1{
    text-align: center;
}
.form-row{
    display:flex;
    align-items: center;
    flex-direction: column;
    width:100%;
}
.form-row>h6{
    width:100%;
    text-align: left;
    
}
.form-row>label>*,.form-row>label{
    border-radius: 10px;
    padding:10px;
    width: 100%;
}

input{
    border-style: solid;
    min-width: 400px;
}
form{
    display:flex;
    align-items: center;
    flex-direction: column;
    padding:10px;
    width:30%;
    min-width: 450px;
    gap: 25px;
    /*border-radius: 20px;
    box-shadow: 2px 2px 2px gray;
    border-style: solid;
    border-color: gray;
    border-width: 1px;*/
}
.form-submit-row{
    text-align: right;
    width:100%;
}
.form-register{
    color:aliceblue;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: 20px;
}
.form-sub-button{
    border-radius: 10px;
    padding: 10px;
}

.outcome{
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 5vw;
    left: 5vw;
    bottom: 5vh;
    height: 90vh;
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
    opacity: 0.9;
    margin:2%;
    border-style: solid;
    border-radius: 20px;
    z-index: 200;
    box-shadow: 3px 3px 3px gray;
}

.xbar{
    position:absolute;
    right:0;
    top:0;
    height:5rem;
    width:5rem;
    border-style: solid;
    border-radius: 15px;
    font-size: 50px;
    border-color: gray;
    color: gray;
    text-align: center;
    vertical-align: center;
    margin:5px;
    cursor:pointer;
}

.xbar:active{
    background-color: black;
}

@media screen and (max-width: 800px){
    form{
        width:90%;
        min-width: 90%;
    }
    input{
        min-width: 80%;
    }
}
