@charset "utf-8";
body {
  background: #f7f8fa;
}

.warp800 {
  width: 798px;
  margin: 30px auto 20px auto;
  background: url(../images/signbg.jpg) no-repeat right bottom #fff;
  border: #BCD5DF solid 1px;
  border-radius: 3px;
  box-shadow: 0 1px 3px #ccc;
}

.sign-header {
  height: 70px;
  border-radius: 3px 3px 0 0;
}

.sign-header .logo {
  width: 131px;
  height: 48px;
  background: url(../images/logo2.gif) no-repeat;
  margin: 10px 0 0 14px;
  float: left;
}

.sign-header .top {
  font-size: 16px;
  float: right;
  margin: 0 20px;
  line-height: 70px;
}

.sign-header .top a {
  color: #06c;
}

.sign-box {
  padding: 20px;
}

.form-section {
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 16px;
  color: #303133;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #e4e7ed;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.form-row {
  display: flex;
  margin-bottom: 12px;
}

.form-row .form-group {
  width: 48%;
  margin-right: 2%;
}

.form-label {
  font-size: 14px;
  color: #606266;
  width: 80px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 15px;
}

.form-label .required {
  color: #f56c6c;
  margin-left: 4px;
}

.form-controls {
  flex: 1;
  max-width: 250px;
}

.form-controls input,
.form-controls select {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-size: 14px;
  color: #606266;
  background: #fff;
  transition: all 0.3s;
  box-sizing: border-box;
}

.form-controls input:hover,
.form-controls select:hover {
  border-color: #c0c4cc;
}

.form-controls input:focus,
.form-controls select:focus {
  outline: none;
  border-color: #409eff;
  box-shadow: 0 0 0 1px rgba(64, 158, 255, 0.1);
}

.form-controls input::placeholder {
  color: #c0c4cc;
}

.btn-submit {
  display: inline-block;
  padding: 8px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.errmsg {
  background: #fef0f0;
  border: 1px solid #fbc4b4;
  border-radius: 4px;
  padding: 8px 12px;
  color: #f56c6c;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .warp800 {
    width: 95%;
    margin: 20px auto;
  }
  
  .form-label {
    width: 80px;
  }
  
  .form-controls input,
  .form-controls select {
    max-width: 250px;
  }
  
  .form-row .form-group {
    width: 100%;
    margin-right: 0;
  }
}
