
* {
    font-family: Nunito, sans-serif;
}

:root {
    --tw-gradient-from: #0072C6;
    --tw-gradient-to: #8CC152;
    --lg-10: linear-gradient(160deg, var(--tw-gradient-from), #33C3F0, var(--tw-gradient-to));

}

.bg-gradient-1 {
    background: var(--lg-10);
}

.bg-light {
    --bs-bg-opacity: 0.3;
}

.full-screen {
    height: 100vh;
    width: 100vw;
}

.border-opacity-05 {
    --bs-border-opacity: 0.5;
}

.icon {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo {
    background-image: url('../../public/img/svg/logo-sm.svg');
}

.size-8-rem {
    width: 138px;
    height: 138px;
}


.c-light {
    color: rgba(255, 255, 255, 0.85);
}

.fs-sm {
    font-size: .875rem;
}

.size-3-vw {
    width: clamp(320px, 70vw, 400px);
}


.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.6s ease-out forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.4s;
}

a {
    color: rgba(255, 255, 255, 0.71);
    transition: color 0.1s ease-in-out;
}

a:hover {
    color: rgb(255, 255, 255);
}

.c-lighter {
    color: rgba(255, 255, 255, 0.94);
    transition: color 0.1s ease-in-out;

}

.c-lighter:hover {
    color: rgba(255, 255, 255, 0.73);
}

.bg-lighter {
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.1s ease-in-out;
}

.bg-lighter:hover {
    background-color: rgba(255, 255, 255, 0.21);
}

.c-blue {
    color: rgb(0 114 198);
}

.btn-white {
    transition: background-color 0.1s ease-in-out;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.78);
}

.parsley-errors-list li {
    list-style: none;
    color: rgba(80, 60, 122, 0.8);
    font-size: .875rem;
    margin-top: .5rem;
}

/*.output-error .alert.alert-danger {*/
/*    border: unset !important;*/
/*    background-color: unset !important;*/
/*    color: rgba(80, 60, 122, 0.8);*/
/*    font-size: .875rem;*/
/*    margin: unset !important;*/
/*    padding: unset !important;*/
/*    font-weight: bold;*/
/*    text-align: center;*/
/*}*/


.support {
    content: url("../img/icons/support.svg");
}

.size-1-5-rem {
    width: 1.5rem;
    height: 1.5rem;
}


.mx-h {
    height: clamp(300px, 100vh, 700px) !important;
}

.--p-top-start {
    --p-t: 100px;
    --p-s: 100px;
}

.stain {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    filter: blur(35px);
    position: fixed;
    pointer-events: none;
    z-index: 0;
    top: var(--p-t);
    left: var(--p-s);
}


.circle-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.circle-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    height: 0;
    width: 0;
}

.circle-checkbox .checkmark {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s ease;
}

.circle-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: white;
}

.circle-checkbox .checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 4px;
    height: 7px;
    border: solid #2888ce;
    border-width: 0 2px 2px 0;
}

.pointer {
    cursor: pointer;
}


.circle-checkbox input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}

.c-lightest,
::placeholder {
    color: #fff9;
}


@media (max-height: 700px) {
    html, body {
        height: auto;
        min-height: 700px;
        min-width: 250px;
        overflow-y: auto;
    }

    .full-screen {
        height: auto !important;
        min-height: 700px;
        overflow-y: auto;
    }

    .full-screen > .position-absolute {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }

    .mx-h,.mx-h-register {
        height: auto !important;
        max-height: none !important;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .size-3-vw{
        width: 100%;
    }

    .full-screen>.position-absolute{
        width: clamp(250px, 30vw,300px);
        margin: 0 auto;
    }

    input{
        width: 100%;
    }
}


