body {
    font-family: "SourceSans3", Helvetica, Arial, sans-serif;
    font-size: 16px;
    background: #333;
    color: #cecece;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

a, a:link, a:visited, a:active, a:hover {
    color: #ffc324;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #ffc32400;
    transition: 0.2s ease-in-out border-bottom-color;
}

a:active, a:hover {
    border-bottom-color: #ffc324ff;
}

a.btn, button {
    background-color: #222222;
    color: #FFC324;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.875rem;
    line-height: 100%;
    padding: 1rem 1.25rem;
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
    border: 0;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    cursor: pointer;
}

a.btn:hover, button:hover, a.btn:active, button:active {
    background-color: #000000;
    color: #FFC324;
    box-shadow: 0px 0px 15px 0px rgba(255, 195, 36, 0.8);
}

header {
    width: 100%;
    background: rgba(0, 0, 0);
    padding: 0.625em;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 50;
    height: 4.375em;
}

.logo {
    display: block;
    width: 50px;
    height: 50px;
    background: url(/common/img/jump-logo-sq.svg) no-repeat center center;
    background-size: cover;
    font-size: 0.01em;
    text-indent: -10000em;
}

form , div.thanks_holder {
    width: 400px;
    max-width: calc(100vw - 1rem);
    margin: 1rem auto;
    padding: 1.5rem;
    background-color: rgba(85, 85, 85, 0.90);
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

div.thanks_holder p {
        width: 100%;
        font-size: 1.2em;
}

@media (min-width: 600px) {
    form {
        margin-top: 100px;
    }
}

form .logo {
    width: 100px;
    height: 100px;
    background-size: 100px 100px;
    border-radius: 19px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.35);
}

form fieldset {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0.5rem 0;
    gap: 1rem;
}

form p {
    text-align: center;
    margin: 1em 0 0.5em;
    font-size: 1em;
    font-weight: normal;
    color: #fff;
    line-height: 1.4;
    width: 86%;
}

form h1 {
    margin: 0.5rem 0 0;
}

input[type="text"], input[type="password"] {
    width: 100%;
    font-family: "SourceSans3", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.25em;
    line-height: 120%;
    padding: 15px 20px;
    margin: 0;
    color: #ffffff;
    display: inline-block;
    background-color: rgba(51, 51, 51, 0.75);
    border: 3px solid #222222;
    vertical-align: middle;
    border-radius: 36px;
}

input[type="text"]::placeholder, input[type="password"]::placeholder { 
    color: #FFC324; 
    opacity: 0.6; 
}

input[type="text"]:focus, input[type="password"]:focus { 
    border-color: rgba(255, 195, 36, 0.8); 
    outline: none;
}

.additional-actions {
    width: 96%;
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

p.error {
    color: #ffffff;
    font-size: 1.25em;
    font-weight: 600;
    background-color: #ea2626;
    padding: 10px !important;
    border-radius: 10px;
    text-align: left;
    width: 100%;
}