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

body{
    overflow-x: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: 'Lato', sans-serif;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(35deg, rgb(1, 42, 155) 3%, rgba(60,132,206,1) 38%, rgb(48, 209, 238) 68%, rgb(138, 218, 255) 98%);
    animation: gradient 10s ease infinite;
    background-attachment: fixed;
    background-size: 400%;

    
    display: flex;
    justify-content: center;
}

.animate__animated {
    --animate-duration: 0.3s;
}

.ale{
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 20px;
}

.alert{
    width: fit-content;
    display: flex;
    align-items: center;
    margin: 5px 30px;

    z-index: 9999;
}

.alert p{
    margin: 0 25px 0 0;
    padding: 0;
}

.secForm{
    width: 500px;
    height: 420px;
    background-color: rgb(248, 248, 248);
    border: solid rgb(161, 161, 161);
    border-radius: 40px;
    text-align: center;
    padding: 15px 7.5px 0 7.5px;
    margin: 1vh 5vw;
    transition: max-height 0.5s ease-in-out;
}

.loginForm, .registerForm{
    display: flex;
    justify-content: center;
}





@media screen and (max-width: 710px) {
    .secForm{
        width: 80vw;
        height: 70vh;
    }
}

@media screen and (max-width: 450px) {
    .secForm{
        width: 100vw;
        height: 80vh;
        padding: 15px 5px 0 5px;
        margin: 1vh 4vw 0 4vw ;
    }

    #idChoiceLink{
        display: block;
    }

    #idChoiceLink .col-md-4{
        padding: 0;
    }
}

.loginForm, .registerForm{
    color: white;
    border-radius: 40px;
    background: linear-gradient(35deg,#007acc, #26d4ff);
    box-shadow:  1px 10px 35px #0075d4;
    text-align: center;
    display: inline-block;
    width: 90%;
    height: auto;
    padding: 10px 15px;
    margin: 10px 15px;
}

.pRequire{
    color: rgb(0, 0, 0);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: rgb(223, 223, 223);
    text-align: center;
    width: 90%;
    height: auto;
    padding: 10px 20px 0 20px;
    margin: 10px 15px 0 15px;
}

.pRequire h3{
    font-size:15px;
    font-weight: 800;
}

.pRequire ul li {
    display: flex;
    height: fit-content;
    text-align: left;
    padding: 0 ;
    margin:  0 ;
}

.pRequire ul li p{
    padding: 0 ;
    margin: 0 ;
    text-align: left;
}

.pRequire ul li .stat{
    margin-right: 0.75rem;
}



/*------- Checkbox-------*/

#idChoiceLink{
    width: fit-content;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 15px auto;
    padding: 0;
}

#idChoiceLink .col-md-4{
    display: grid;
    align-items: center;
    text-align: left;
    width: fit-content;
    padding: 0 5px;
}


.clSwitch{
    font-size: 15px;
    position: relative;
    width: 3em;
    height: auto;
}

.clSwitch input {
    opacity: 0;
}

.clSlider{
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: linear-gradient(35deg, rgb(1, 42, 155) 3%, rgba(60,132,206,1) 38%, rgb(48, 209, 238) 68%, rgb(138, 218, 255) 98%);
    animation: gradient 10s ease infinite;
    background-attachment: fixed;
    background-size: 400%;    
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clSlider:before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 1.5em;
    inset: 0;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clSwitch input:checked + .clSlider:before {
    transform: translateX(1.6em);
}

/*------- Input -------*/

.secForm .form-group{
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 20px;
    width: 100%;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    background: none;
    padding: 2px 5px;
    margin: 15px auto;
}

.secForm .form-group label{
    width: fit-content;
}

.secForm .form-group label i{
    display: flex;
    align-items: center;
    justify-content: left;
    text-decoration: none;
    font-size: 22px;
    padding: 0 10px 0 3px ;
}

.secForm .form-group label .bi-globe::before{
    padding-right:10px;
}

.secForm .form-group label .bi-globe{
    padding-right: 5px;
}

.secForm .form-group .coorCopy{
    border: none;
    outline: 0;
    background: none;
    color: white;
    width: 100%;
}

.secForm .form-group .coorCopy::placeholder{
    color: rgb(243, 243, 243, 0.5);
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/*Modal*/

.modDash form{
    display: block;
}

.modDash .modDashBody{
    text-align: left;
}

.modDash .modDashBody input[type="text"]{
    width: 450px;
}
.modDash .modDashBody .idChoiceLink{
    width: fit-content;
    margin:  20px 0 30px 0;
    padding: 0;
    font-size: 18px;
}

.modDash .modDashBody .idChoiceLink .col-md-3, .modDash .modDashBody .idChoiceLink .col-md-4{
    display: grid;
    align-items: center;
    text-align: left;
    padding: 0 10px 0 0 ;
    width: fit-content;
}


.modDash .modDashBody .clSwitch{
    font-size: 15px;
    position: relative;
    display: inline-block;
    width: 3em;
    height: auto;
}

.modDash .modDashBody .clSwitch input {
    opacity: 0;
}

.modDash .modDashBody .clSlider{
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--color3);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modDash .modDashBody .clSlider:before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 1.5em;
    inset: 0;
    background-color: var(--color2);
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modDash .modDashBody .clSwitch input:checked + .clSlider {
    background: var(--color3);
}

.modDash .modDashBody .clSwitch input:focus + .clSlider {
    box-shadow: 0 0 1px var(--color3);
}

.modDash .modDashBody .clSwitch input:checked + .clSlider:before {
    transform: translateX(1.6em);
}