.form-box {
    max-width: 600px;
    margin: 0;
}

.login-form {
    background: #ffffff;
    padding: 4vw;
    margin: 0 auto;
}

.rogue-form-box {
    position: relative;
    padding: 40px 0 0;
}

.rogue-form-box > label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

input, textarea, select {
    -webkit-appearance: none;
    background: #fafafa;
    background-color: #fafafa;
    border: none;
    color: #182a35;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    width: auto;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    display: inline;
    width: auto;
}

input[type="submit"] {
    width: auto;
}

input, textarea, select {
    display: inline-block;
    padding: 12px 10px;
    border-radius: 10px;
    margin: 0;
    width: 90%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    font-size: 18px;
}

img.rogue-image-holder {
    max-width: 400px;
    max-height: 300px;
    margin: 20px 0;
    display: block;
}

.contact-form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ededed;
}
.contact-form ::-moz-placeholder { /* Firefox 19+ */
    color: #ededed;
}
.contact-form :-ms-input-placeholder { /* IE 10+ */
    color: #ededed;
}
.contact-form :-moz-placeholder { /* Firefox 18- */
    color: #ededed;
}

input.hidden-input {
    display: none;
}

input.center-text {
    text-align: center;
}

label.checkbox-agreement-label {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin: 0 auto;
}

p.help-note {
    margin: 10px 0;
    font-size: 16px;
}

label.checkbox-agreement-label input {
    margin-right: 4px;
}

label.checkbox-agreement-label input.input-required {
    border: 1px solid #ff5549;
}

.radio-option, .checkbox-option {
    display: grid;
    grid-gap: 0 5px;
    padding: 10px;
    margin: 10px 0 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    grid-template-columns: 80% 20%;
    cursor: pointer;
    background: #fafafa;
    align-items: center;
}

.radio-option:hover, .checkbox-option:hover {
    background: #ededed;
}

.radio-option label, .checkbox-option label {
    cursor: pointer;
}

.radio-option input, .checkbox-option input {
    cursor: pointer;
    text-align: center;
    width: 100%;
}
