body,
html {
    min-height: 100vh;
}

.wrapper {
    max-width: 57rem;
}

.wrapper .inner-child {
    min-height: 33rem;
}

.wrapper .inner-child.child-1 {
    background: linear-gradient(135deg, #59cdff, #63beff, rgb(21, 127, 202), #d9adff, #181aca);
    background-size: 340% 300%;
    animation: gradient-animation 10s ease infinite;
    color: white;

}

#form {
    max-width: 25rem;
}


.blur-effect {
    background: linear-gradient(135deg, #59cdff, #63beff, rgb(21, 127, 202), #181aca);
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.abs-icons {
    position: absolute;
    top: 20%;
}

.left-ico {
    left: 3%;
    stroke: rgb(45, 43, 46);
}

.form-label {
    font-size: .9rem;
}

.form-group input:focus {
    border-color: #157fca !important;
    box-shadow: 0 0 .17rem 0 #157fca !important;
}

.form-group input:focus~svg.left-ico {
    stroke: #157fca;
}

.form-group input {
    color: rgb(85, 89, 92) !important;
    cursor: text;
}

#submit-btn {
    background: linear-gradient(70deg, #157fca 30%, #181aca);
    color: white;
    background-size: 200% 200%;
    transition: background 0.5s ease-in-out;
    -moz-transition: background 0.5s ease-in-out;
    -webkit-transition: background 0.5s ease-in-out;
    font-weight: 500;
}

#submit-btn:hover {
    background-size: 340% 300%;
    animation: gradient-animation 3s ease infinite;
}

.copyright-link {
    color: #0a3b5e;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: color 0.5s ease-in-out;
    position: relative;
}

.copyright-link:hover {
    color: rgb(56, 89, 113);
}

.copyright-link::after {
    content: '';
    position: absolute;
    top: 1.3rem;
    left: 0;
    width: 100%;
    height: .2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, #157fca, #181aca);
    transition: all 0.5s ease-in;
}

.copyright-link:hover::after {
    left: 40%;
    width: 10%;
}

.right-ico {
    right: 3%;
    stroke: rgb(45, 43, 46);
    cursor: pointer;
}

#action-link {
    color: rgb(9, 143, 239);
    font-size: .9rem;
}

#submit-btn:not(.processing) div {
    display: none;
}

#submit-btn.processing span {
    display: none;
}

.loader {
    border: 4px solid rgb(255, 255, 255);
    border-left-color: transparent;
    border-radius: 50%;
}

.loader {
    border: 4px solid rgb(255, 255, 255);
    border-left-color: transparent;
    width: 25px;
    height: 25px;
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.81);
    border-left-color: transparent;
    width: 25px;
    height: 25px;
    animation: spin89345 1s linear infinite;
}

@keyframes spin89345 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swal2-popup {
    font-size: 1rem !important;
}

.swal2-popup .swal2-confirm {
    font-size: .9rem !important;
    border: 1px solid rgb(8, 80, 131) !important;
    padding: .2rem .7rem !important;
}