
.login-wrapper {
    position: relative;
    background-color: transparent;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    height: 400px;
    padding: 10px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0,0,0,.5);
    align-items: center;
}

.login-form-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    align-items: center;
    width: fit-content;
    height: fit-content;
}

.login-input-box {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    width: 50%;
    
    align-items: center;
    z-index: 5;
    width: fit-content;
    height: fit-content;
}

.login-input-box button {
    margin-top: 5px;
    width: 100px;
}

.login-input-box input {
    margin-bottom: 5px;
    width: 300px;
}

.login-title-box {
    text-align: center;
    height: 50px;

}

.login-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: x-large;
    color: white;
    
}

.login-form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    min-height: 680px;
    padding-top: 100px;
    

}

