.btn {
    display: inline-block;
    background: linear-gradient(to right, #E91E63, #FF5722);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 10px #3F51B5; */
    margin: 0 10px;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px #FF5722;
  }
  
  .hero-outline{
    margin-top: 10px;
    padding: 20px 0px;
  }
  .btn-outline {
    background: transparent;
    border: 2px solid #FF5722;
    box-shadow: none;
    padding: 10px 15px;
    border-radius: 10px;
    color: #000;
  }



  
.login-section{
    max-width: 500px;
    margin: auto;
}
    
#verify_code_img{
  position: absolute;
  top: 35px;
  bottom: 0px;
  right: 0px;
  height: 40px;
}
/* 表单区域 */
.login-form {
  position: relative;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
 
}

.form-control {
  width: 94%;
  padding: 14px 15px;
  border-radius: 5px;
  border: 1px solid;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-control:focus {
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}


.w1224{
    width: 1224px;
    margin: 0 auto;
}
.social-links-list .social-link-a{
    text-decoration: none;
    color: inherit;
}