body {
    opacity: 0;
    padding-top: 50px;
    transition: opacity 0.5s ease-in-out;
}



button {
    align-items: flex-end;
    background-color: #00000000;
    border: none;
    display: flex;
    height: 66px;
    margin: 0 auto;
    max-width: 600px;
    outline: none;
    width: calc(100% - 60px);
}



form {
    margin-bottom: 10px;
}



.popup {
    align-items: center;
    background-color: #00000080;
    display: flex;
    display: none;
    height: 100dvh;
    left: 0;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* universal style for popup things */
.popup .container {
    align-items: center;
    background-color: #48494a;
    display: flex;
    /* display: none; */
    flex-direction: column;
    justify-content: flex-start;
    margin: auto;
    max-height: 99dvh;
    max-width: 600px;
    min-width: 298px;
    outline: #1e1e1f solid 3px;
}


.popup .container .con-header {
    align-items: center;
    background-color: #48494a;
    border-bottom: #5a5b5c solid 3px;
    border-left: #6d6d6e solid 3px;
    border-right: #5a5b5c solid 3px;
    border-top: #6d6d6e solid 3px;
    display: flex;
    min-height: 60px;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}

.popup .container .con-header p {
    font-size: 1.1rem;
    text-align: center;
    padding: 0 50px;
    position: absolute;
    width: 100%;
}

.popup .container .con-header .close {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-right: 2.5px;
    min-width: 50px;
    z-index: 1;
}
.popup .container .con-header .close:hover {
    background-color: #58585a;
}
.popup .container .con-header .close:active {
    background-color: #313233;
}

.popup .container .con-header .close img {
    height: 20px;
    width: 20px;
}

.popup .container .content {
    align-items: flex-start;
    background-color: #313233;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #48494a #313233;
    width: 100%;
}

.popup .container .content .error-note {
    display: none;
    max-width: 100%;
    text-align: center;
}



input {
    border: 0px;
    caret-color: #6cc349;
    color: #fff;
    font-family: "Mojangles", "Unicode";
    outline: none;
    padding: 5px .7rem;
}




.logo {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}


.logo img {
    width: 175px;
}





.form {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 50px auto 0;
    width: calc(100% - 60px);
    max-width: 600px;
}



.form label {
    color: white;
    font-family: 'Mojangles', 'Unicode';
    font-size: 1rem;
    margin: 30px auto 10px 0;
}
.form label:first-child {
    margin-top: 0;
}


.form input {
    align-items: center;
    background-color: #313233;
    border-top: 4px solid #242425;
    display: flex;
    font-size: 20px;
    height: 50px;
    line-height: 1rem;
    margin: 0 auto;
    outline: 3px solid #1e1e1f;
    width: calc(100% - 6px);
}
.form input#password {
    margin-bottom: 10px;
    margin-bottom: 50px;
}
.form input#password::-ms-reveal {
    filter: invert(100%);
}


.form .forgot-password {
    display: none;
    margin: 0 0 50px 3px;
    width: 100%;
}


.form .verification {
    margin-bottom: 45px;
    min-height: 69px;
}


.form button {
    width: 100%;
}
.form button:focus-visible .button-active {
    outline: 3px solid #fff;
}

.form button .button-active .btn-con {
    align-items: center;
    display: flex;
    justify-content: center;
}



button .button-disabled .btn-con {
    align-items: center;
    display: flex;
    justify-content: center;
}