* {
    margin: 0px;
    padding: 0px;
}
*:focus {
    outline: none;
}
body::before {
    content: '';
    /* background-image: url(../images/products-common/bg_line.png); */
    /* background-repeat: repeat; */
}
body, body::before {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
body {
    /* background: -webkit-linear-gradient(top, #1b1e23 0%, #1d2025 25%, #24272c 50%, #2c3034 75%, #32363a 100%) fixed; */
    /* background: -moz-linear-gradient(top, #1b1e23 0%, #1d2025 25%, #24272c 50%, #2c3034 75%, #32363a 100%) fixed; */
    /* background: -o-linear-gradient(top, #1b1e23 0%, #1d2025 25%, #24272c 50%, #2c3034 75%, #32363a 100%) fixed; */
    /* background: -ms-linear-gradient(#1b1e23 0%, #1d2025 25%, #24272c 50%, #2c3034 75%, #32363a 100%) fixed; */
    background: #e0e0e0;
    font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans","wenquanyi micro hei","Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.jice-logo-box {
    position: relative;
    padding-bottom: 30px;
}
.jice-logo {
    width: 270px;
    height: 95px;
    /* margin-left: -15px; */
}
.user-input-wrap, .user-submit-wrap {
    position: relative;
}
.user-form-input, .submit-btn {
    height: 38px;
    border-radius: 4px;
    border: 1px solid;
}
.user-form-input {
    margin-top: 20px;
    padding-left: 42px;
    padding-right: 20px;
    width: 208px;
    font-size: 16px;
    color: #000;
    border-color: #000;
    background-color: #ebebeb;
    transition: all 1s ease;
}
.user-form-input:focus {
    background-color: #fff;
    border-color: #fff;
}
.user-form-icon {
    position: absolute;
    left: 8px;
    top: 28px;
    width: 24px;
    height: 24px;
}
.user-form-icon.email-icon {
    width: 22px;
    height: 22px;
    left: 10px;
    top: 29px;
}
.user-form-input.error {
    border-color: #ee565d;
}
.forget-password-link {
    float: right;
    margin-top: 14px;
    color: #4b4954;
    font-size: 12px;
    transition: color 0.2s ease;
    text-decoration: none;
}
.forget-password-link:hover {
    color: #2e2c35;
    text-decoration: underline;
}
.form-tips {
    white-space: nowrap;
    font-size: 12px;
    color: #ee9051;
}
.user-form-tips, .submit-error-tips {
    position: absolute;
    left: 284px;
    top: 31px;
    display: inline-table;
    white-space: nowrap;
    font-size: 12px;
    color: #ee9051;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.submit-error-tips {
    top: 39px;
}
.user-form-tips > a {
    color: #ee9051;
}
.user-form-tips.email-already-exists-tips {
    opacity: 0;
}
.submit-btn {
    /* background-color: #ed565d; */
    background-color: #000;
    font-size: 18px;
    /* border-color: #ed565d; */
    border-color: #fff;
    color: #fff;
    width: 270px;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 1s ease;
}
.submit-btn:hover {
    /* background-color: #da444b; */
    background-color: #5d6b72;
}
.open-link {
    padding-top: 40px;
    font-size: 14px;
}
.open-link > span {
    color: #ccc;
}
.open-link > a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.open-link > a:hover {
    text-decoration: underline;
    color: #ee565d;
}
.open-link > .arrow-image {
    width: 17px;
    height: 5px;
    margin: 2px 5px;
}
.success-title {
    color: #4b4954;
    font-size: 28px;
}
.success-content {
    color: #4b4954;
    font-size: 16px;
    margin-top: 38px;
    line-height: 1.8em;
}

.loading {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  