main {
    background: url(/landing/images/landing/signup.webp) no-repeat center center fixed;
    background-size: cover;
}

.centeredFormRow {
    display: flex;
    justify-content: center;
}

#firstForm {
    transition: 2s all;
}

#secondForm {
    opacity: 0;
    display: none;
    transition: 2s all;
}

#firstForm.hide {
    opacity: 0;
    display: none;
}

#secondForm.visible {
    opacity: 1;
    display: block;
}

#captchaWrapper {
    display: flex;
}

#captchaImg {
    min-width: 250px;
    box-shadow: 0px 0px 9px 2px gray;
    border-radius: 5px;
    margin-bottom: 10px;
}

#refreshCaptcha {
    height: 48px;
    width: 48px;
    min-width: unset;
    margin-left: 1em;
    font-size: 1.5em;
    line-height: 2em;
}

input::placeholder {
    color: #DADADA;
    opacity: 1;
}

.inputError {
    border-color: red !important;
}

.inputError::placeholder {
    color: red;
}

.errorFlagWrapper {
    position: absolute;
    z-index: 5;
    font-size: .9em;
}

.errorFlagTip {
    height: 1.5em;
    width: 1.5em;
    position: relative;
    top: 0.45em;
    left: 1.1em;
    background-color: #282828;
    transform: rotateZ(45deg);
    z-index: -1;
}

.errorFlagContent {
    background-color: #282828;
    padding: 0.5em 1em;
    border-radius: 8px;
}

.checkIco {
    width: 2em;
    height: 2em;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.checkIco.loading {
    border: .4em solid #DADADA;
    border-top: .4em solid var(--gdtfBlue);
    border-radius: 50%;

    animation: animationFrames linear 2s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: animationFrames linear 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: animationFrames linear 2s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: animationFrames linear 2s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: animationFrames linear 2s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@-webkit-keyframes animationFrames {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-o-keyframes animationFrames {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes animationFrames {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes animationFrames {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
    }
}

@keyframes animationFrames {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.checkIco.error {
    background-image: url('/images/gdtf/error.png');
}

.checkIco.ok {
    background-image: url('/images/gdtf/ok.png');
    filter: contrast(0.5);
}

.checkIcoInputWrapper {
    display: flex;
}

#submitSignUp {
    margin-top: 10px;
}