#main {
    overflow: hidden;
}

.main__acceptUser {
    width: 100vw;
    min-height: 100vh;
    background-color: #fff;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px 40px 90px;
}

#awaitSection {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.awaitSection__article {
    width: 80%;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0px 2px 10px #00000070;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
}

.awaitSection__div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.awaitSection__fullName {
    margin: 0px;
    font-size: 30px;
    color: var(--black);
    font-weight: 600;
}

.awaitSection__email {
    margin: 0px;
    font-size: 20px;
    font-weight: 500;
}

.awaitSection__work {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
}

.awaitSection__reject {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f00;
    color: #fff;
    border-radius: 100%;
    border: none;
    height: 60px;
    width: 60px;
    font-size: 40px;
    cursor: pointer;
}

.awaitSection__accept {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 100%;
    border: none;
    height: 60px;
    width: 60px;
    font-size: 40px;
    cursor: pointer;
    margin-left: 20px;
    justify-self: right;
}

#signin-and-login {
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

#signin-and-login .logo {
    width: 160px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px 0px 0px 20px;
    cursor: pointer;
}

#signin_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.5s;
}

.section__title {
    color: var(--green);
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0px;
}

.section__p {
    color: var(--dark-gray);
    margin: 20px 0px;
    text-align: center;
    font-size: 16px;
}

.section__p span {
    color: var(--orange);
    text-decoration: underline;
    cursor: pointer;
}

.section__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fff;
}



.section__div {
    background: #e7e7e799;
    padding: 10px 0px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    display: flex;
    align-items: center;
    margin: 5px 0px;
    transition: 0.2s;
}

.section__div:has(> input:focus) {
    background-color: var(--white);
    color: var(--green);
    border-bottom: solid 2px var(--green);
    box-shadow: none;
    border-radius: 0px;
}

.section__div .section__input:focus::placeholder {
    color: var(--green);
}

.section__div .section__input:focus {
    color: var(--green);
}

.section__icon {
    font-size: 23px;
    margin: 0px 10px;
}

.section__input {
    background: transparent;
    border: 0px;
    outline-width: 0px;
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.section__input::placeholder {
    color: var(--black);
    opacity: 0.9;
}

.section__button {
    background-color: var(--green);
    border-radius: 100px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    padding: 15px 60px;
    margin: 10px 0px;
    border: 0px;
    outline-width: 0px;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__button.loading {
    background: transparent;
    padding: 5px 0px 0px 0px;
    cursor: wait;
}

.section__select {
    background: transparent;
    color: var(--black);
    border: 0px;
    width: 100%;
    height: 100%;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.section__select:focus {
    color: var(--green);
    border: 0px;
    outline-width: 0px;
}

.section__div:has(> select:focus) {
    background-color: var(--white);
    color: var(--green);
    border-bottom: solid 2px var(--green);
    box-shadow: none;
    border-radius: 0px;
}

.section__div .section__select:focus {
    color: var(--green);
}

.form__div.checkbox--div {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
}

.form__div.checkbox--div p {
    font-size: 18px;
    margin: 0px;
    font-weight: 400;
    margin-left: 10px;
}

.checkbox-wrapper-12 {
    position: relative;
}

.checkbox-wrapper-12>svg {
    position: absolute;
    top: -130%;
    left: -170%;
    width: 110px;
    pointer-events: none;
}

.checkbox-wrapper-12 * {
    box-sizing: border-box;
}

.checkbox-wrapper-12 input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 0;
}

.checkbox-wrapper-12 input[type="checkbox"]:focus {
    outline: 0;
}

.checkbox-wrapper-12 .cbx {
    width: 24px;
    height: 24px;
    top: calc(100px - 12px);
    left: calc(100px - 12px);
}

.checkbox-wrapper-12 .cbx input {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray);
    border-radius: 50%;
}

.checkbox-wrapper-12 .cbx label {
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: trasnlate3d(0, 0, 0);
    pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg {
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 1;
    pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
}

.checkbox-wrapper-12 .cbx input:checked+label {
    animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper-12 .cbx input:checked+label+svg path {
    stroke-dashoffset: 0;
}


.section__divTime {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 80%;
    max-width: 500px;
    margin-top: 10px;
}

.setTime__p {
    font-weight: 500;
    text-align: center;
}

.setTime__div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.setTime__div .section__div {
    width: 100%;
}

#viewAddedUsers {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    padding: 0px 0px 40px 0px;
}
.viewAddedUsers__h2 {
    font-size: 25px;
    font-weight: 500;
    margin: 45px 0px 15px 0px;
}
.viewAddedUsers__card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background: var(--white);
    box-shadow: 0px 2px 6px #0000008c;
    border-radius: 20px;
    width: 100%;
    height: 180px;
    margin: 20px 0px;
}

.viewAddedUsers__img {
    height: 100%;
    aspect-ratio: 1/1;
    padding: 4px;
    border: solid 2px var(--black);
    border-radius: 100%;
}

.viewAddedUsers__email {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin: 0px;
}

.viewAddedUsers__name {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 0px;
}

.viewAddedUsers__work {
    margin: 0px;
}

.viewAddedUsers__div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin-left: 20px;
    position: relative;
    padding: 10px 0px;
}

.viewAddedUsers__btn {
    border: solid 2px transparent;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.viewAddedUsers__divBtn {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
    right: 0;
}

#editUserDataTime {
    margin-right: 15px;
    border: solid 1px var(--black);
    background: transparent;
}

#editUserDataTime:hover {
    background: var(--black);
    color: #fff;
}

#deleteUserData {
    background: #f00;
    color: #fff;
}

#deleteUserData:hover {
    background: transparent;
    color: #f00;
    border: solid 1px #f00;
}

.main__editUserTime {
    background: #0000008c;
    backdrop-filter: blur(8px);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: 0.2s;
}

.main__DeleteUser {
    background: #0000008c;
    backdrop-filter: blur(8px);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: 0.2s;
}

.editUserTime__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
}
#editUserTimeAlert {
    display: none;
    margin: 10px 0px 0px 0px;
    color: #f00;
}
.editUserTime__divBtns {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.editUserTime__btn {
    padding: 10px 30px;
    border-radius: 50px;
    background: var(--green);
    border: 0px;
    color: #fff;
    font-size: 20px;
}

#cancelEditUserTime {
    background-color: var(--black);
}

.DeleteUser__article {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    max-width: 80%;
}
.DeleteUser__title {
    color: #f00;
    font-weight: 600;
    font-size: 25px;
}
.DeleteUser__p {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
.DeleteUser__alert {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    transition: 0.2s;
}
.DeleteUser__div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
.DeleteUser__btn {
    border: 0px;
    padding: 5px 25px;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    transition: 0.2s;
}

.DeleteUser__btn:hover {
    transform: scale(1.05);
}

#deleteUserConfirm {
    background: #f00;
}
#deleteUserCancel {
    background: var(--black);
}

@-moz-keyframes splash-12 {
    40% {
        background: var(--green);
        box-shadow: 0 -18px 0 -8px var(--green), 16px -8px 0 -8px var(--green), 16px 8px 0 -8px var(--green), 0 18px 0 -8px var(--green), -16px 8px 0 -8px var(--green), -16px -8px 0 -8px var(--green);
    }

    100% {
        background: var(--green);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-webkit-keyframes splash-12 {
    40% {
        background: var(--green);
        box-shadow: 0 -18px 0 -8px var(--green), 16px -8px 0 -8px var(--green), 16px 8px 0 -8px var(--green), 0 18px 0 -8px var(--green), -16px 8px 0 -8px var(--green), -16px -8px 0 -8px var(--green);
    }

    100% {
        background: var(--green);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-o-keyframes splash-12 {
    40% {
        background: var(--green);
        box-shadow: 0 -18px 0 -8px var(--green), 16px -8px 0 -8px var(--green), 16px 8px 0 -8px var(--green), 0 18px 0 -8px var(--green), -16px 8px 0 -8px var(--green), -16px -8px 0 -8px var(--green);
    }

    100% {
        background: var(--green);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@keyframes splash-12 {
    40% {
        background: var(--green);
        box-shadow: 0 -18px 0 -8px var(--green), 16px -8px 0 -8px var(--green), 16px 8px 0 -8px var(--green), 0 18px 0 -8px var(--green), -16px 8px 0 -8px var(--green), -16px -8px 0 -8px var(--green);
    }

    100% {
        background: var(--green);
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@media only screen and (max-width: 500px) {
    .section__title {
        font-size: 35px;
        letter-spacing: normal;
    }

    .section__p {
        margin: 5px 0px 10px 0px;
    }

    .section__form {
        padding: 0px 20px;
    }

    .section__div {
        width: 90%;
        margin: 10px 0px;
    }

    .section__help {
        text-align: center;
        margin: 0px 0px 10px 0px;
    }

    .logo {
        display: none;
    }

    #signin_section {
        width: 100vw;
    }

    .section__icon {
        font-size: 30px;
    }

    .section__button {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 500px) {
    .main__acceptUser {
        padding: 40px 0px;
    }

    #awaitSection {
        margin-top: 20px;
    }

    .awaitSection__article {
        flex-direction: column;
        width: 90%;
    }

    .awaitSection__reject {
        height: 40px;
        width: 40px;
    }

    .awaitSection__accept {
        height: 40px;
        width: 40px;
    }

    .acceptRejectDiv {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        margin-top: 10px;
    }

    .awaitSection__work {
        align-self: center;
    }

    .awaitSection__fullName {
        font-size: 20px;
        text-align: center;
        align-self: center;
    }

    .awaitSection__email {
        align-self: center;
        font-size: 18px
    }

    .viewAddedUsers__card {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .viewAddedUsers__img {
        height: 120px;
    }

    .viewAddedUsers__div {
        margin: 0px;
        align-items: center;
        padding: 10px 0px 0px 0px;
    }

    .viewAddedUsers__email {
        font-size: 18px;
        text-align: center;
    }

    .viewAddedUsers__name {
        font-size: 18px;
        text-align: center;
    }

    .viewAddedUsers__work {
        font-size: 16px;
        text-align: center;
        margin: 0px;
    }

    #viewAddedUsers {
        width: 100%;
        padding: 20px;
    }

    .viewAddedUsers__divBtn {
        position: relative;
        margin-top: 20px;
    }

    #editUserData {
        margin-right: 25px;
    }
}