.login-form-container {
    width: 100%;
    height: 100%;
    /* background-color: #00a6ab; */
    position: relative;
    text-align: center;
}

.login-form-page {
    min-width: 340px;
    margin: auto;
    max-width: 800px;
    width: 95%;
    height: 95%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    display: none;
}

.login-form-page-visible {
    display: flex;
}

.login-form-switch {
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 1;
    justify-content: space-around;
    width: 50%;
    min-width: 100px;
    max-width: 500px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
}

.login-form-switch-item {
    min-width: 60px;
    height: 30px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: auto;
    cursor: pointer;
}

.login-form-switch-item-selected {
    border-bottom: 2px solid rgb(9, 36, 155);
}

.login-form-main,
.login-form-main-container {
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    display: flex;
    flex-grow: 3;
}

.login-form-main {
    display: none;
}

.login-form-main-active {
    display: flex;
}

.login-form-main input {
    all: unset;
}

.login-form-main input[type=text],
.login-form-main input[type=password] {
    min-width: 100px;
    max-width: 600px;
    width: 50%;
    margin: auto;
    border: #022662 3px solid;
    border-radius: 7px;
    height: 40px;
    font-size: large;
    background-color: transparent;
    color: rgb(5, 24, 85);
}

.login-buttons {
    min-width: 100px;
    max-width: 600px;
    width: 50%;
    margin: auto;
    border: #ffffff 3px solid;
    border-radius: 7px;
    height: 40px;
    font-size: large;
    background-color: #022662;
    color: white;
    cursor: pointer;
}

.login-buttons:hover {
    animation: .5s 1 forwards login-buttons-hover;
}

.login-form-main input[type=text]::placeholder {
    color: rgb(11, 79, 182);
}

.lbl-grow-up {
    min-width: 100px;
    max-width: 600px;
    width: 50%;
    margin: auto;
    height: 40px;
    font-size: large;
    background-color: transparent;
    color: white;
    position: relative;
    top: 50px;
    display: none;
}

.lbl-grow-up-active {
    animation: lableToUp .4s 1 forwards;
    display: block;
}

@keyframes lableToUp {
    from {
        top: 50px;
    }
    to {
        top: 0px;
    }
}

@keyframes login-buttons-hover {
    from {
        border: #ffffff 3px solid;
        background-color: #022662;
        color: white;
    }
    to {
        border: #0d2880 3px solid;
        background-color: #ffffff;
        color: #0d2880;
    }
}