.button {
    color: rgba(255, 255, 255, 0.8); /* rgba(220, 124, 41, 0.9); */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin: 10px 15px;
    filter: drop-shadow(15px 15px 2px rgba(0, 0, 0, 0.2));
    cursor: pointer;
    /* width: min-content; */
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.8s ease;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logoutButton{

    

}

.homeButton{

    

}

.accessCodeModalButton, .createAccButton{

    padding: 12px 18px;
    font-family: "neuropol-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #e7e7e7;
    font-size: 1.5rem;
    margin-top: 0px;

}

.downloadButtonLink{
 
    text-decoration: none;
    position: sticky;
    right: 0;

}

.downloadButton{

    padding: 8px 14px;
    font-family: "neuropol-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #bbbbbb;
    font-size: 1.2rem;
    margin-top: 0px;

}

.closeModalButton{

    position: absolute;
    top: 0;
    right: 0;
    padding: 6px;

}

.addCodeButton{

    padding: 6px;
    cursor: pointer;

}

.deleteCodeButton{

    padding: 8px;
    cursor: pointer;
}

.toggleCodeButton{

    padding: 6px 16px;
    cursor: pointer;

}

.deleteCodeButton, .toggleCodeButton{
 
    margin: 8px 0px;
    width: min-content;

}

.addCodeButton{

    margin-left: 15px;

}

.toggleCodeButtonGreen{

    border: 1px solid rgba(7, 117, 13, 0.5);
    background: rgba(127, 254, 122, 0.2);

}

.toggleCodeButtonRed{

    border: 1px solid rgba(251, 113, 113, 0.5);
    background: rgba(246, 119, 119, 0.2);

}

.forgotPasswordButton{

    cursor: pointer;
    margin-top: 15px;

}

.forgotPasswordButton span{

    font-size: 0.9rem;
        cursor: text;
        top: 18px;
        font-family: "myriad-pro", sans-serif;
        font-weight: 300;
        font-style: italic;
        text-decoration: underline;
        color: #7e7e7e;
        cursor: pointer;

}

.frm{

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 45px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin: 10px 15px;
    filter: drop-shadow(15px 15px 2px rgba(0, 0, 0, 0.2));
}

.accessFrm, #insrtCodeFrm{

    width: clamp(300px, 50vw, 380px);
    padding: 35px 15px;

}

.signUpForm{

    width: clamp(300px, 50vw, 380px)

}

.loginFrm{

    padding: 45px 30px 30px 30px;

}

.allInp{

    margin-bottom: 20px;
    width: 85%;

}

.centerForm{

    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
    width: 100vw;
    height: calc(100dvh - 100px);

}

.signUpBody{

    display: flex;
    justify-content: center;
    width: 100vw;
    overflow-y: scroll;
    padding: 25px 0px;

}

.formHeader{

    font-family: "neuropol-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #a5a3a3;
    font-size: 2.5rem;
    padding-bottom: 10px;
    font-style: italic;
    text-align: center;

}

.formHeaderReset{

    font-size: 2rem;

}

.formSubHeader{

    font-family: "neuropol-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #747373;
    font-size: 1.8rem;
    padding-bottom: 10px;
    font-style: italic;
    text-align: center;
    padding-top: 25px;

}

.form__group {
    position: relative;
    padding: 25px 0 0;
    margin-top: 10px;
    width: 100%;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 0.8rem;
    color: #fff;
    padding: 6px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field:autofill {
    color: rgba(0, 0, 0, 0.1);
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 0.9rem;
    cursor: text;
    top: 18px;
    font-family: "myriad-pro", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
    font-family: "myriad-pro", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-style: italic;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 300;
    border-width: 3px;
    border-image: linear-gradient(to right, #ffffff, #d1d1d1);
    border-image-slice: 1;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

/* reset input */
.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

.frmBtn{

    padding: 8px 14px;
    font-family: "neuropol-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #a5a3a3;
    font-size: 1.5rem;
    margin-top: 20px;

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
    font-size: 0.8rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
}

#errorTxt, #globalErrorTxt{

    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    color: rgba(204, 12, 12, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 16, 16, 0.6);
    border-radius: 10px 0px 0px 10px;
    padding: 6px 20px;
    text-align: left;
    position: fixed;
    top: 10%;
    right: 0;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    max-width: 75vw;


}
/* 
#errorTxtModal {

    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(204, 12, 12, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 16, 16, 0.6);
    border-radius: 5px 15px 0px 5px;

    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;

} */

#successTxt, #globalSuccessTxt{

    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    color: rgb(19, 165, 43);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(24, 255, 16, 0.6);
    border-radius: 10px 0px 0px 10px;
    padding: 6px 20px;
    text-align: left;
    position: fixed;
    top: 10%;
    right: 0;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    max-width: 75vw;

}
/* 
#successTxtModal {

    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 0.85rem;
    color: rgb(19, 165, 43);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(24, 255, 16, 0.6);
    border-radius: 5px 15px 0px 5px;
   
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;

} */

.showAlert{

    transform: translateX(0%) !important;

}

#resetPasswordFrm{

    width: clamp(300px, 50vw, 380px);
        padding: 55px 5px 15px 5px;

}

.selectorCenter{

    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.stateSelector {
    background-color: rgba(255, 255, 255, 0.1);
    color: #a5a3a3;
    padding: 12px;
    font-size: 0.8rem;
    -webkit-appearance: button;
    appearance: button;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
}

.stateSelector option{
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: black;
}

@media screen and (max-width: 900px) {

    .frm {

        padding: 35px 20px;

    }

    .formHeader {

        width: 75%;

    }

    .accessFormHeader, .insertCodeHeader{
     
        width: 100%;

    }

    .accessFrm{
        width: clamp(300px, 50vw, 325px);
    }

    #insrtCodeFrm {
        width: clamp(350px, 50vw, 325px);
    }

}


@media screen and (max-width: 600px) {

    .frm{

        padding: 25px 15px;

    }

    #resetPasswordFrm {

        padding: 42px 10px 15px 10px;

    }

    .accessFormHeader {

        width: 95%;

    }

}


@media screen and (max-width: 426px) {

    .closeModalButton {
        padding: 6px;
        margin: 5px;
    }

    .accessFrm, #insrtCodeFrm{
        width: clamp(275px, 80vw, 380px);
        padding: 25px 10px;
    }

    #resetPasswordFrm {

        width: clamp(275px, 50vw, 380px);
        padding: 42px 5px 15px 5px;
        margin: 0px;


    }

    .stateSelector {

        padding: 10px;

    }
}