@font-face {
    font-family: "uncutSans";
    src: url(../fonts/Uncut-Sans-Font-Family/Static/Uncut-Sans-Regular.otf)
        format("woff2");
}
:root {
    --bg-color: #d0f0b7;
    --light-bg: #8bb3aa;
    --main-color: #035946;
    --fb-color: #1877f2;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo {
    text-align: center;
    /* margin: 2rem auto; */
    padding-bottom: 1rem;
    width: 100px;
}
h2,
h1,
a,
p {
    font-family: "uncutSans", sans-serif !important;
}
.register-auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.register-auth-container-details {
    background-color: white;
    padding: 2rem 3rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1 {
    font-size: 25px;
}

.auth-socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    margin-block: 1.5rem;
    font-family: "uncutSans", sans-serif !important;
    width: 100%;
}
.auth-google,
.auth-facebook {
    width: 100%;
    font-size: 14px;
}
.auth-google a,
.auth-facebook a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    padding: 12px;
    padding-inline: 30px;
    gap: 0.5rem;
    transition: 1s ease-in-out;
    text-wrap: nowrap;
}
.auth-facebook a:hover,
.auth-google a:hover {
    transform: scale(1.03);
    opacity: 0.8;
}
.auth-google a {
    border: 1px solid rgba(128, 128, 128, 0.611);
}
.auth-facebook a {
    background-color: #1877f2;
    color: white;
    width: 100% !important;
}

.separator {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    color: #b1ccc6;
    position: relative;
    font-family: "uncutSans", sans-serif !important;
}
.separator div {
    width: 200px !important;
    height: 1px !important;
    background-color: #b1ccc6 !important;
}
.font-fam {
    font-family: "uncutSans", sans-serif !important;
}
form {
    width: 100%;
}
.form-input {
    width: 100% !important;
    margin-bottom: 1rem !important;
}

.form-input input {
    width: 100% !important;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid gray;
    outline: none;
}
.form-input input:focus {
    border: 1px solid var(--main-color);
}

.form-input input::placeholder {
    font-family: "uncutSans", sans-serif !important;
}
.password-container {
    width: 100%;
    position: relative;
    display: flex;
}

.toggle-password {
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 12px;
}

.validation {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.validation div {
    border: 1px solid rgb(117, 117, 117);
    color: black;
    border-radius: 5px;
}

.validation p {
    font-size: 12px;
    padding: 5px;
    padding-inline: 12px;
    border-radius: 5px;

    /* border: 1px solid black; */
    line-height: 1.5;
}

.invalid {
    color: red !important;
    border-color: red !important ;
    font-weight: bold;
}

.valid {
    color: green !important;
    border: 1px solid green !important;
    font-weight: bold;
}
.auth-submit input {
    width: 100%;
    background-color: var(--main-color);
    border: none;
    outline: none;
    padding: 10px;
    color: white;
    border-radius: 7px;
    transition: 10ms ease-in;
    font-family: "uncutSans", sans-serif !important;
}
.auth-submit input:hover {
    opacity: 0.9;
    transform: scale(1.03);
}
.worry {
    text-align: center;
    padding-block: 0.7rem;
    color: rgba(128, 128, 128, 0.674);
    font-family: "uncutSans", sans-serif !important;
}
.worry a {
    text-decoration: none;
    color: var(--main-color);
}

/* Login styles */

.login-auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-auth-container-details {
    background-color: white;
    padding: 2rem 3rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.forgot-password {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    margin-bottom: 1rem;
}

/* forget password styles */

.forget-auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.forget-auth-container-details {
    background-color: white;
    padding: 2rem 3rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.confirm-auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.confirm-auth-container-details {
    background-color: white;
    padding: 2rem 3rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* confirm code  */
.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1rem 0;
}

.otp-digit {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid gray;
    border-radius: 5px;
}
.otp-digit:focus {
    outline: 1px solid var(--main-color);
}

.mail-logo {
    text-align: center;
    margin: 1rem auto;
    width: 100px;
}
.confirm-auth-container h1 {
    padding-bottom: 1rem;
}
/* Password reset */

.reset-auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reset-auth-container-details {
    width: 40%;
    background-color: white;
    padding: 2rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.reset-auth-container-details h1 {
    padding-bottom: 1rem;
}
/* One time registeration */

.top-section {
    width: 100%;
    position: relative;
    background-color: #d0f0b7;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    padding: 0;
    color: #035946;
}
.top-section .logo-one {
    margin-top: 4rem;
    width: 100px;
}
.top-section h1 {
    margin-top: 2rem;
    line-height: 0;
    font-size: 30px;
}
.top-section-sub {
    width: 40%;
    margin-top: 2rem;
}
.custom-shape-divider-bottom-1730627477 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1730627477 svg {
    display: block;
    width: 100%;
    height: 25vh;
}

.custom-shape-divider-bottom-1730627477 .shape-fill {
    fill: #ffffff;
}

.bottom-section {
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
    font-family: "uncutSans", sans-serif !important;
}
.card {
    width: 400px;
    height: 45vh;
    background-color: white;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "uncutSans", sans-serif !important;
}

.payment-box button {
    background-color: #035946;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    width: 100%;
    margin-block: 1rem;
}
.payment-box button:hover {
    background-color: #044739;
}
.payment-box li {
    font-size: 12px;
    list-style: none;
    line-height: 28px;
}
.payment-box span {
    font-size: 12px;
    font-weight: 100;
}

/* Payment styles */

.payment-auth-container {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-auth-container-details {
    background-color: white;
    padding: 2rem 3rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.payment-h2 {
    font-size: 20px;
    padding-block: 1.5rem 2rem;
}
.info-payment {
    width: 100%;
}
.payment-auth {
    padding-inline: 5rem;
}
.info-payment div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-block: 0.5rem;
}
.info-payment div img {
    width: 15px;
    height: 15px;
}
.info-sec {
    background-color: #e2b93b4d;
    width: 100%;
    display: flex;
    /* gap: 4rem; */
    justify-content: space-between;
    padding: 15px;
    gap: 7px;
    border-radius: 3px;
    margin-top: 20px;
}
.info-sec img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.info-sec p {
    font-size: 12px;
}
.confirm-btn {
    width: 100%;
    color: white;
    border-radius: 10px;
    background-color: #044739;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    margin-block: 2rem;
    transition: 1s ease;
}
.confirm-btn:hover {
    transform: scale(1.02);
}

/* modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    padding-block: 2rem;
    border-radius: 8px;
    text-align: center;
    width: 40%;
}
.modal-content p {
    padding-block: 1rem;
}
.you-sure {
    font-size: 24px;
}
.modal button {
    margin: 10px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.modal-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.yes-btn {
    background: var(--main-color);
    padding-block: 18px !important;
    color: white;
}

.close-btn {
    /* background: red; */
    background-color: transparent;
    color: var(--main-color);
}

/* Payment paid */

/* Payment-paid styles */

.payment-paid-auth-container {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-paid-auth-container-details {
    background-color: white;
    padding: 2rem 3rem;
    border: 2px solid #8bb3aa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.payment-paid-auth-container-details .image-placeholder img {
    width: 200px;
    height: 150px;
    object-fit: contain;
}
.payment-paid-auth-container-details h2 {
    padding-block: 0.5rem;
    text-align: center;
}
.payment-paid-auth-container-details p {
    color: gray;
    text-align: center;
    padding-bottom: 3rem;
}
.dismiss-btn {
    width: 100%;
    background-color: var(--main-color);
    border: none;
    outline: none;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}
.dismiss-btn:hover {
    transform: scale(1.03);
}
@media (max-width: 767px) {
    body {
        background-color: white;
    }
    .logo {
        margin-top: 1rem;
        margin-bottom: 0;
    }
    .register-auth-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .register-auth-container-details {
        padding: 1rem;
        width: 100% !important;
        border: none;
    }
    .register-auth-container-details h1 {
        font-size: 20px;
    }

    .separator div {
        width: 130px !important;
        height: 1px !important;
        background-color: #b1ccc6 !important;
    }
    .auth-socials {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    /* login */

    .login-auth-container-details {
        width: 100%;

        background-color: white;
        padding: 1rem;
        border: none;
    }
    .forgot-password {
        display: flex;
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        text-decoration: none;
        color: var(--main-color);
        margin-bottom: 1rem;
    }

    .forget-auth-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .forget-auth-container-details {
        padding: 1rem;
        border: none;
    }
    /* confirm */
    .confirm-auth-container-details {
        padding: 1.5rem;
        border: none;
    }
    .reset-auth-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .reset-auth-container-details {
        width: 100%;
        background-color: white;
        padding: 2rem;
        border: none;
    }

    .top-section {
        min-height: 70vh;
    }
    .card {
        width: 90%;
        top: 65%;
    }
    .top-section-sub {
        width: 90%;
        margin-top: 2rem;
    }
    /* payment */
    .payment-auth-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .payment-auth-container-details {
        border: none;
    }

    .payment-auth {
        padding-inline: 2rem;
    }
    /* payment-paid */

    .payment-paid-auth-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .payment-paid-auth-container-details {
        border: none;
    }

    .payment-auth {
        padding-inline: 2rem;
    }
}
@media (min-width: 768px) and (max-width: 1040px) {
    .payment-auth-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .payment-auth-container-details {
        border: none;
    }

    .payment-auth {
        padding-inline: 2rem;
    }
}
