html, body {
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100%;
    font-size: 17px;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: normal;
    background-color: #000;
}

a {
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover {
    opacity: 0.5;
}

img {
    max-width: 100%;
}

h2 {
    color: #774B30;
    font-size: 21px;
    font-weight: bold;
    margin-top: 15px;
}

h3 {
    color: #000;
    font-size: 13px;
    font-weight: bold;
    margin-top: 15px;
}

h4 {
    color: #7F898E;
    font-size: 17px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 0;
}

.red-star {
    color: #D40B30;
}

.break-line {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #ffffff, #AEBAC0, #ffffff);
    margin-top: 15px;
}

p {
    color: #774B30;
    font-size: 17px;
    margin-top: 15px;
}

.main-area {
    position: absolute;
    left: 50%;
    top: 0;
    width: 520px;
    height: 100%;
    background-color: #fff;
    margin: 0 0 0 -260px;
    padding: 50px 25px;
}

.container {
    max-width: 85%;
}

select {
    background: #EAF1F8;
    border-radius: 50px;
    width: 100%;
    height: 45px;
    outline: none;
    resize: none;
    border: none;
    font-size: 17px;
    font-weight: bold;
    color: #7F898E;
    display: block;
    padding: 0 25px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

input:disabled, select:disabled {
    opacity: 0.75 !important;
    background: #eee !important;
    color: #999 !important;
    cursor: default !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    top: 18px;
    right: 25px;
    position: absolute;
    width: 13px;
    height: 8px;
    background-image: url("../images/select_arrow_icon.png");
    background-size: cover;
}

input[type="text"], input[type="email"], input[type="password"] {
    background: #EAF1F8;
    border-radius: 50px;
    width: 100%;
    height: 45px;
    outline: none;
    resize: none;
    border: none;
    font-size: 17px;
    font-weight: bold;
    color: #7F898E;
    display: block;
    padding: 0 25px;
    cursor: text;
}

input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder {
    color: #7F898E;
}

input[type="text"]::placeholder, input[type="email"]::placeholder {
    color: #7F898E;
}

input[type="text"].verification-code {
    background: #fff;
    border-radius: 50px;
    width: 100%;
    height: 43px;
    outline: none;
    resize: none;
    border: solid 2px #D2092F;
    font-size: 17px;
    font-weight: bold;
    color: #D3082F;
    display: block;
    padding: 0 25px;
    cursor: text;
}

input[type="text"].verification-code::-ms-input-placeholder {
    color: #D3082F;
}

input[type="text"].verification-code::placeholder {
    color: #D3082F;
}

input[type="submit"] {
    background: #D60930;
    border-radius: 50px;
    width: 100%;
    height: 45px;
    outline: none;
    resize: none;
    border: none;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    display: block;
    padding: 0 25px;
    box-shadow: 0 3px 9px #ccc;
    cursor: pointer;
}

.success-box {
    background-color: #F2F2F2;
    border-radius: 25px;
    text-align: center;
    padding: 80px 15px 35px 15px;
    margin-top: 50px;
    position: relative;
}

.success-box img.success-icon {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: -30px;
    margin-left: -40px;
}

.success-box h4 {
    color: #7F898E;
    font-weight: bold;
    margin: 0;
    font-size: 21px;
}

.success-box p {
    color: #7F898E;
    margin: 25px 0 0 0;
    font-size: 17px;
}
