.accounts-content {
    position: relative;
    width: 100%;
    height: 100vh;
}

.login-modal,
.signup-modal,
.forgot-pass-modal,
.reset-pass-modal {
    position: absolute;
    width: 280px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(65, 0, 145, .4);
    border-radius: 10px;
}

.login-modal {
    height: 300px !important;
}

.signup-modal {
    height: 350px;
}

.forgot-pass-modal {
    height: 150px !important;
}

.reset-pass-modal {
    height: 200px !important;
}

.login-modal form,
.signup-modal form,
.forgot-pass-modal form,
.reset-pass-modal form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-input,
.signup-input,
.forgot-pass-input {
    margin: 1% auto;
    padding: 2%;
    width: 250px;
    height: 35px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .6);
    font-family: 'KalamehRegular';
}

.login-password,
.signup-password,
.signup-confirm-password,
.reset-password-pass,
.reset-password-confirm-pass {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-password span,
.signup-password span,
.signup-confirm-password span,
.reset-password-pass span,
.reset-password-confirm-pass span {
    position: absolute;
    left: 8%;
    cursor: pointer;
}

.login-password span i,
.signup-password span i,
.signup-confirm-password span i,
.reset-password-pass span i,
.reset-password-confirm-pass span i {
    font-size: 1.5rem;
    color: #9d9d9d;
}

.password-reset {
    position: absolute;
    text-decoration: none;
    font-family: "KalamehRegular";
    font-size: .8rem;
    padding: 0 1%;
    top: 65%;
    right: 7%;
    border-bottom: 1px solid #003cff;
    color: #003cff;
}


.remember-box {
    position: absolute;
    width: 50%;
    top: 55%;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.remember-box input {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    accent-color: #000;
}

.login-form-errors,
.signup-form-errors,
.forgot-pass-errors {
    width: 100%;
}

.login-form-errors li,
.signup-form-errors li,
.forgot-pass-errors li {
    list-style-type: none;
    width: 90%;
    left: 0;
    right: 0;
    margin: 2% auto;
    text-align: center;
    font-family: 'KalamehMedium';
    color: #fff;
    font-size: .8rem;
    background-color: #ff0008;
    border-radius: 5px;
}

.login-btn-box,
.signup-btn-box,
.forgot-pass-btn-box {
    position: absolute;
    width: 100%;
    bottom: 10%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
}

.forgot-pass-btn-box {
    justify-content: center !important;
}

.login-btn-box button,
.signup-btn-box button,
.forgot-pass-btn-box button {
    width: 120px;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.forgot-pass-btn-box button {
    width: 90% !important;
}

.password-reset:active,
.login-btn-box button:active,
.signup-btn-box button:active,
.forgot-pass-btn-box button:active {
    transform: scale(.9);
}

.login-btn,
.signup-btn,
.forgot-pass-btn {
    background-color: #009414;
    color: #fff;
}

.signup-form-btn,
.login-form-btn {
    background-color: #ff0008;
    color: #fff;
}