* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
}

body {
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background-color: #78f1ef;
}

.container {
    max-width: 1440px;
    width: 100%;
    height: fit-content;
}

.login-page-controller {
    max-width: 1440px;
    width: 100%;
    height: 100%;
}

.signup-page-flexbox {
    display: flex;
    height: fit-content;
}

.login-page-flexbox {
    display: flex;
    height: 100%;
}

.signup-page-contents-holder {
    flex: 1;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.signup-shrinker-page {
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.signup-logo-holder {
    width: 45%;
    height: 50px;
    align-self: center;
}

.signup-logo-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.signup-contents-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.signup-bold-content {
    font-weight: bold;
    font-size: 17px;
}

.signup-thin-content {
    font-size: 13px;
}

.signup-page-form-holder {
    flex: 1;
    height: fit-content;
    padding: 2% 3%;
    background-color: white;
}

.signup-page-form-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.signup-page-form-content {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.signup-title {
    font-size: 28px;
    font-weight: bold;
    color: #78f1ef;
}

.signup-subtitle {
    font-size: 15px;
    font-weight: 550;
}

.signup-page-form-flexbox form {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.signup-boxes-flexbox {
    display: flex;
    column-gap: 10px;
}

.signup-form-control {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.signup-form-control :is(input, select) {
    font-weight: 550;
    padding: 6px 9px;
}

.signup-f-space {
    flex: 1;
}

.signup-form-control label {
    font-size: 14px;
    font-weight: 550;
}

.signup-form-phone-flexbox {
    display: flex;
    align-items: center;
}

.signup-form-phone-flexbox input:nth-child(2) {
    width: 18%;
}

.signup-form-phone-flexbox input:nth-child(3) {
    width: 82%;
}

.signup-agree-flexbox {
    display: flex;
    column-gap: 6px;
    align-items: center;
}

.signup-agree-flexbox input {
    accent-color: #78f1ef;
}

.signup-agree-flexbox label {
    font-size: 14px;
}

.signup-agree-flexbox a {
    font-weight: bold;
    color: #78f1ef;
}

.login-page-holder {
    height: 100%;
}

button {
    margin-top: 10px;
    padding: 8px;
    font-weight: bold;
    color: black;
    background-color: #78f1ef;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.captcha-box {
    width: 100%;
    height: 30px;
    position: relative;
    background-color: #78f1ef;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
}

.capt {
    --trans-y: 0;
    --rotate-val: 0;
    transform: translateY(calc(5% * var(--trans-y)))
        rotate(calc(8deg * var(--rotate-val)));
}

.is_user_registered {
    font-size: 14px;
    font-weight: bold;
}

.is_user_registered :is(a) {
    font-weight: bold;
    color: #78f1ef;
}

@media screen and (max-width: 900px) {
    .signup-page-flexbox {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 535px) {
    .signup-page-contents-holder {
        display: none;
    }

    .login-page-controller {
        overflow-y: hidden;
    }

    .login-page-flexbox {
        height: 85%;
    }

    .signup-boxes-flexbox {
        flex-direction: column;
        row-gap: 12px;
    }

    .login-page-holder,
    .signup-page-form-holder {
        height: 100%;
        display: flex;
        align-items: center;
        background-color: #78f1ef;
    }
    .signup-page-form-flexbox {
        background-color: white;
        padding: 20px;
        width: 100%;
    }
}
