/* Wrapper */
.login-wrapper {
    max-width: 400px;
    padding: 2em;
    margin-left: auto;
    margin-right: auto;
    min-height: 34em;
}
.login-wrapper div {
    transition: all .3s ease-in-out;
}

/* Password box */
.password-hide-button {
    font-size: 1.25em;
    max-width: 100px;
}
.password-box {
    display: flex;
    flex-direction: row;
    height: max-content;
    height: calc(50px + 1em + 6px);
}
.password-box button {
    margin-left: .5em;
    width: 80px;
}

/* Accounts logo */
.circle-accounts-image {
    position: relative;
    max-width: 100%;
    
    width: 64px;
    height: 64px;

    background-color: rgb(201, 201, 201);

    border-radius: 100%;
    padding: 5px;
}
.circle-accounts-image > img {
    position: absolute;
    top: 5px;
    left: 5px;
    
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}
.circle-accounts-image > img[rotate] {
    animation: rotate-circle-account 3s linear;
    animation-iteration-count: infinite;
}
@keyframes rotate-circle-account {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Floating log in box */
#loginbox {
    background:inherit;
    background-color: rgba(255, 255, 255, 0.75);
    color: black;
    border-top: #eb13ff .5em solid;

    box-sizing: border-box;

    border-radius: 1em;
}

@media screen and (max-width:688px) {
    #loginbox {
        margin: -15px;
        min-height: calc(100vh - var(--nav-height-total));
        min-width: calc(100% + 30px) !important;
    }
}

/* Status */
#login-status {
    font-size: 1.2em;
    transition: all .2s ease-in-out;
    max-width: 100%;

    min-height: 3em;
}

/* Create account UI */
.backcreatebutton {
    margin-right: 10px;
    width: 80px;
}
.login_buttons {
    display: flex;
}

/* Account verification */
#verify-box {
    text-align: center;
    font-size: 1.5em;
}

#verify-box i {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: .5em;
    display: block;
}