@charset "utf-8";

@-webkit-keyframes takeOff {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    ;
    }
}

@keyframes takeOff {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    ;
    }
}

@-webkit-keyframes swing {
    10% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    18% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    30% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
    45% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    95% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes swing {
    10% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    18% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    30% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
    45% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    95% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
    50% {
        -webkit-transform: scale(1.6) rotate(-20deg);
        transform: scale(1.6) rotate(-20deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
    50% {
        -webkit-transform: scale(1.6) rotate(-20deg);
        transform: scale(1.6) rotate(-20deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

body {
    font-family: 'Spoqa Han Sans', sans-serif;
    color: #fff;
    background-color: #211c3d;
    background-image: url("data:image/svg+xml,%3Csvg width='49' height='49' viewBox='0 0 49 49' xmlns='https://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235e5975' fill-opacity='.5'%3E%3Cpath d='M20,24h9v1H20V24Zm4-4h1v9H24V20Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.to-bright {
    background: -webkit-gradient(linear, right top, left bottom, from(#a18cd1), to(#fbc2eb)), url("data:image/svg+xml,%3Csvg width='49' height='49' viewBox='0 0 49 49' xmlns='https://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235e5975' fill-opacity='.5'%3E%3Cpath d='M20,24h9v1H20V24Zm4-4h1v9H24V20Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background: -o-linear-gradient(top right, #a18cd1, #fbc2eb), url("data:image/svg+xml,%3Csvg width='49' height='49' viewBox='0 0 49 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235e5975' fill-opacity='.5'%3E%3Cpath d='M20,24h9v1H20V24Zm4-4h1v9H24V20Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background: linear-gradient(to bottom left, #a18cd1, #fbc2eb), url("data:image/svg+xml,%3Csvg width='49' height='49' viewBox='0 0 49 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235e5975' fill-opacity='.5'%3E%3Cpath d='M20,24h9v1H20V24Zm4-4h1v9H24V20Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.to-bright::after {
    content: '';
    width: 100vw;
    height: 100vh;
    background-color: #211c3d;
    position: absolute;
    -webkit-animation: fadeOut 2s ease-out;
    animation: fadeOut 2s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.btn-primary {
    border-radius: 4px;
    background-color: #42b3c7;
    padding: 12px 40px;
    color: #fff;
    border-style: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: block;
    -webkit-box-shadow: 0 0 12px -2px #42b3c7;
    box-shadow: 0 0 12px -2px #42b3c7;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #2f92a3;
    color: #f2f2f2;
}


section.content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 920px);
    min-width: 920px;
    background-color: #18142b;
    -webkit-box-shadow: 0px 20px 40px -2px rgba(0, 0, 5, .5);
    box-shadow: 0px 20px 40px -2px rgba(0, 0, 5, .5);
    border: 1px solid rgba(255, 255, 255, .05);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 12px;
    -webkit-animation-name: takeOff;
    animation-name: takeOff;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    z-index: 1;
}

section.content .frm-sec {
    width: 40%;
    padding: 64px;
}

section.content .frm-sec h1 {
    margin: 0 0 64px 0;
}

section.content .frm-sec .radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section.content .frm-sec .radios legend {
    width: 100%;
    margin-bottom: 10px;
    font-weight: 300;
}

section.content .frm-sec .radios input+label {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    text-align: center;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 0;
    font-size: .875rem;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    color: #444;
    border-left: .5px solid #ddd;
    border-right: .5px solid #ddd;
    z-index: 1;
    letter-spacing: -0.5px;
    vertical-align: middle;
}

section.content .frm-sec .radios input:first-child+label {
    border-radius: 4px 0 0 4px;
}

section.content .frm-sec .radios input {
    display: none;
}

section.content .frm-sec .radios input:checked+label {
    background-color: #42b3c7;
    border-color: #42b3c7;
    -webkit-box-shadow: 0 0 12px -2px #42b3c7;
    box-shadow: 0 0 12px -2px #42b3c7;
    color: #fff;
    z-index: 2;
}

section.content .frm-sec .radios input:hover+label {
    opacity: .8;
}

section.content .frm-sec .radios input:checked:hover+label {
    opacity: 1;
}

section.content .frm-sec .radios label:first-of-type {
    border-radius: 4px 0 0 4px;
    border: none;
}

section.content .frm-sec .radios label:last-of-type {
    border-radius: 0 4px 4px 0;
    border: none;
}

section.content .frm-sec .usr-info {
    margin-bottom: 64px;
}

section.content .frm-sec .usr-info label {
    font-weight: 300;
    margin: 24px 0 10px 0;
    display: block;
}

section.content .frm-sec .usr-info label:first-of-type {
    margin-top: 32px;
}

section.content .frm-sec .usr-info input {
    width: 100%;
    font-size: .875rem;
    padding: 12px;
    border: none;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

section.content .img-sec {
    border-radius: 12px 0 0 12px;
    width: 60%;
    background-size: cover;
    background-position: center;
    background-image: url("/ghas/static/images/01.png");
}

section.content .frm-sec .btn-primary {
    margin: 0 auto;
}

section.content .frm-err legend,
section.content .frm-err .usr-info label {
    color: #ff3b6f;
}

section.content .frm-err .usr-info input {
    border: 1px solid #ff3b6f;
}

section.content .frm-err .box-err {
    font-size: .875rem;
    color: #ff3b6f;
    border: 1px solid #ff3b6f;
    background-color: #ffe8ee;
    border-radius: 4px;
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: swing .6s ease;
    animation: swing .6s ease;
}

section.content .pass,
section.content .fail {
    text-align: center;
    width: 100%;
    padding: 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

section.content .pass img,
section.content .fail img {
    width: 160px;
    display: block;
    margin: 0 auto;
}

section.content .pass img {
    -webkit-animation: tada .8s cubic-bezier(0.65, 0, 0.35, 1);
    animation: tada .8s cubic-bezier(0.65, 0, 0.35, 1);
}

section.content .pass h1,
section.content .fail h1 {
    font-size: 2.5rem;
}

section.content .pass p,
section.content .fail p {
    font-weight: 300;
    color: #eee;
    margin: 0;
    line-height: 1.8;
}

section.content a {
    color: #ddd;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

section.content a:hover {
    opacity: .6;
}

@media screen and (max-width: 919px) {
    section.content {
        width: calc(100% - 16px);
        min-width: 320px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    section.content .frm-sec {
        width: 100%;
        padding: 48px 24px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    section.content .img-sec {
        display: none;
    }
    section.content h1,
    section.content .frm-sec .usr-info {
        margin-bottom: 48px;
    }

    section.content .pass,
    section.content .fail {
        padding: 48px 24px;
    }

    section.content .pass h1,
    section.content .fail h1 {
        font-size: 1.5rem;
    }

    section.content .pass img,
    section.content .fail img {
        width: 80px;
    }
}