* {
    margin: 0;
    padding: 0;
    font-family: "Outfit", "Inter";
}

body {
    min-height: 100dvh;
    /* padding-bottom: 100px; */
    /* background-image: url("/assets/tmp/cta_patterned_background_gray_light.png"); */
    /* background-repeat: repeat; */
    /* background-size: 7px; */
}

.app-layout {
    padding: 24px;
}

.LogInOrSignUp-form {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    overflow: hidden;
    transition:
        opacity 0.4s ease,
        transform 0.3s ease,
        height 0.4s ease;
}

.LogInOrSignUp-form.hide {
    opacity: 0;
    transform: translateY(20px);
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
}


.layout-inner {
    align-items: center;
    gap: 40px;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    display: flex;
}

.app-header {
    font-size: 24px;
    font-weight: 500;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    user-select: none;
}

.LogInOrSignUp-header {
    margin-bottom: 32px;
}

.app-main {
    max-width: 360px;
    flex-direction: column;
    flex: 1;
    width: 100%;
    display: flex;
    padding: 20px;
    padding-bottom: 32px;
    padding-top: 32px;
    background: #9fe870;
    border-radius: 1rem;
}

.aph-ctasup {
    background: #00BF6B;
    color: white;
    border: #00BF6B solid 2px;
    border-radius: 50px;
    outline: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}

.login-or-signup {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.LayoutHeading-text {
    flex-direction: column;
    display: flex;
    gap: 8px;
    text-align: center;
    align-items: center;
    color: #000;
}

.LayoutHeading-text h1 {
    font-size: 26px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
}

.sign-copyr {
    font-size: 13px;
    color: #000;
    line-height: 18px;
}

.LayoutHeading-text h2 {
    font-size: 15px;
    font-weight: 400;
}

.app-input-container {
    position: relative;
    margin-bottom: 8px;
}

.aic-otp {
    display: flex;
    justify-content: center;
}

.aic-otp input {
    text-align: -webkit-center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    height: 50px !important;
    width: 50px !important;
    padding: 0px !important;
    flex-grow: 0 !important;
    margin-left: 4px;
}

.app-input-container input {
    background-color: #fff !important;
    border-radius: 12px;
    flex-grow: 2;
    font-size: 14px;
    appearance: none;
    border: transparent solid 2px;
    outline: none;
    padding: 24px 16px 8px 16px;
    transition: box-shadow .1s cubic-bezier(.3, .3, .3, 1), background-color .1s cubic-bezier(.3, .3, .3, 1);
    width: -webkit-fill-available;
}

.app-input-container input.alert+.classic-label {
    color: red;
}

.app-input-container input.alert {
    border-color: red;
}

.app-input-container input:hover {
    background: linear-gradient(180deg, #0000 0%, #00000003 100%), #f5f5f5;
}

.app-input-container input:focus {
    border-color: #000;
}

input:focus+.classic-label,
input:not(:placeholder-shown)+.classic-label {
    transform: translateY(4px);
}

.classic-label {
    transform: translateY(17px);
    position: absolute;
    overflow: hidden;
    top: 0;
    user-select: none;
    pointer-events: none;
    left: 16px;
    font-size: 13px;
    line-height: 24px;
    color: gray;
    transition: opacity .4s cubic-bezier(.3, .3, .3, 1), transform .15s cubic-bezier(.3, .3, .3, 1);
}

.app-sfclio-tn {
    margin-top: 16px;
}

.app-sfclio-tn button {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    line-height: 24px;
    user-select: none;
    cursor: pointer;
    background-color: #171717;
    color: #fff;
    border: none;
    width: -webkit-fill-available;
}

.legal-acceptance {
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
    color: #000;
}

.legal-acceptance a {
    color: #000;
}

.canvas {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    display: flex;
    height: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 40px;
    justify-content: center;
    margin: 0px auto;
}

.prime-spinner {
    animation: spinnerFour 1s linear infinite;
    border: solid 3px transparent;
    border-top: solid 3px #000;
    border-radius: 100%;
    width: 22px;
    height: 22px;
}

@media only screen and (max-width:500px) {
    .app-layout {
        padding: 20px 8px;
    }

    .layout-inner {
        width: -webkit-fill-available;
    }

    .app-main {
        width: -webkit-fill-available;
    }

    .sign-copyr {
        padding: 0;
    }
}

@media only screen and (max-width:700px) {
    .scop-sign {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .sign-copyr {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        text-align: -webkit-center;
    }

    .sign-rft-link {
        margin-top: 12px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .sign-rft-link a:nth-child(1) {
        margin-left: 0;
    }
}

@keyframes spinnerFour {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.scop-sign {
    display: flex;
    margin-top: 80px;
    justify-content: space-between;
    align-items: center;
}

.sign-rft-link {
    display: flex;
    align-items: center;
}

.sign-rft-link a {
    color: black;
    text-decoration: none;
    margin: 0px 10px;
    font-size: 15px;
}

.sign-rft-link a:nth-last-child(1) {
    margin-right: 0;
}



input:-internal-autofill-selected{
    background-color: white !important;
    -webkit-text-fill-color: black !important;
    color: black !important;
    transition: background-color 9999s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: white !important;
    -webkit-text-fill-color: black !important;
    color: black !important;
    transition: background-color 9999s ease-in-out 0s;
}