body {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

header,
footer {
    flex-grow: 0;
    flex-shrink: 0;
}

.wrapper {
    padding: 80px 2%;
}

.cntnr-1 {
    margin: 0 auto;
    width: 450px;
    max-width: 95%;
    height: fit-content;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: #0000003a 0px 5px 15px 0px;
    background-color: #ffffff;
    display: flex;
}

.left-cntnt {
    max-width: 50%;
    overflow: hidden;
}

.img-cntnr {
    width: 100%;
    height: 100%;
}

.img-cntnr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.left-cntnt,
.right-cntnt {
    flex: 1 1 auto;
}

.form-cntnr {
    padding: 25px 40px 35px 40px;
}

@media only screen and (max-width: 900px) {
    .cntnr-1 { 
        width: 450px;
        box-shadow: none;
    }

    .left-cntnt {
        display: none;
    }
}


@media only screen and (max-width: 600px) {
    .form-cntnr {
        padding: 25px 20px 30px 20px;
        box-shadow: none;
    }
}

.form-cntnr-hd {
    color: #414f58;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-cntnr-hd .hd-1 {
    font-size: 1.125rem;
}

.form-cntnr-hd .hd-2 {
    text-align: left;
    padding-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    font-size: #ececec;
}

.form {
    margin-top: 25px;
}

.form .form-rspns {
    color: #ff4343;
    font-size: 0.875em;
    display: none;
    word-wrap: break-word;
    font-weight: 500;
    margin-bottom: 8px;
}

form .form-input:not(:first-of-type) {
    margin-top: 14px;
}

form .form-input input,
form .form-input select {
    width: 100%;
    padding: 8px 12px;
    outline: none;
    border-radius: 2px;
    border: none;
    background-color: #dddddd17;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.875em;
    resize: none;
    border: 1px solid #4d4d4d29;
    transition: 0.1s;
    outline: 3px solid transparent;
}

form .form-input select {
    padding: 8px 8px;
}

@media (pointer: none),
(pointer: coarse) {

    form .form-input input,
    form .form-input select {
        padding: 12px 12px;
    }

    form .form-input select {
        padding: 12px 8px;
    }
}

form .form-input input:focus,
form .form-input select:focus {
    border-color: transparent;
    outline-color: rgba(30, 143, 255, 0.247);
}

form .form-input.password-input input {
    padding-right: 41px;
}

form .form-input span {
    position: relative;
    float: right;
    right: 8px;
    bottom: 2.3em;
    cursor: pointer;
    font-size: 0.75em;
    color: #949494;
    user-select: none;
}

.in-form-lnk button {
    padding: unset;
    min-width: unset;
    width: fit-content;
    max-width: unset;
    background-color: unset;
    border-radius: unset;
    font-size: 0.75em;
    color: #949494;
    margin-top: 4px;
}

.captcha-input {
    display: flex;
    gap: 10px;
    width: 100%;
}

.captcha-cntnr {
    height: 37px;
    width: 110px;
}

.captcha-input img {
    border-radius: 2px;
    height: 37px;
    width: 80px;
    background-color: teal;
}

@media (pointer: none),
(pointer: coarse) {
    .captcha-input img {
        height: 42px;
    }
}

.reload-captcha-cntnr {
    text-align: right;
}

.form-btns {
    margin-top: 40px;
}

form button {
    padding: 10px 10px;
    border-radius: 3px;
    font-size: 0.9375rem;
    display: inline-block;
    min-width: fit-content;
    /* width: 100px; */
    width: 100%;
    max-width: 100%;
}

@media (pointer: none),
(pointer: coarse) {
    form button {
        padding: 13px 10px;
        font-size: 0.9375rem;
    }
}


form button[type="submit"] {
    background-color: #121212;
    color: #ffffff;
}

form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loader {
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    width: 19px;
    height: 19px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

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

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

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

/*  */

footer {
    border-top: 1px solid #12121254;
    background-color: #f8f8f8;
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-r {
    padding: 8px 2px;
}

.f-r-1 a {
    color: #ff4343;
    font-weight: 600;
}

/*  */
main {
    position: relative;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 10s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 20px;
    height: 20px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 20px;
    height: 20px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 11s;
}

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

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}