body{
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    grid-template-columns: none;
}

.center-window{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5%;
    height: 40%;
    min-height: 380px;
    width: 35%;
    min-width: 380px;
    border: 2px solid rgb(206, 159, 210);;
    padding: 10px;
    color: rgb(206, 159, 210);
}

.center-window-bigger{
    min-height: 630px;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 5%;
    width: 100%;
    height: 80%;
}

form > *{
    text-align: center;
    display: block;
    width: 60%;
    margin: 3px 0;
    color: rgb(18, 15, 43);
} 

a:has(button){
    text-decoration: none;
    color: inherit
}

button{
    width: 100%;
    background-color: rgb(115, 72, 141);
    color: rgb(206, 159, 210);
}

.forgot-password{
    text-align: right;
    font-size: 15px;
    color: rgb(206, 159, 210);
}

.center-window input[type="text"], 
.center-window input[type="password"],
.center-window input[type="email"]{
    text-align: left;
}

.center-window textarea {
    resize: none;
    min-height: 55px;
    text-align: left;
}

.header{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.header a{
    position: absolute;
    left: 0;
    top: 0;
}

.center-window input, textarea, select {
    background-color: rgb(43, 23, 59);
    color: rgb(206, 159, 210);
}

a:visited{
    color: rgb(206, 159, 210);
}

a:active{
    color: rgb(206, 159, 210);
    opacity: 0.5;
}

