/* Card bọc form */
.section--1 #sso-login-form {
  width: 370px;
  max-width: calc(100% - 32px);
  margin: 24px auto 0;
  padding: 40px 25px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  position: relative;
}

/* Khoảng cách label trong form */
.section--1 #sso-login-form form .row { margin-bottom: 20px; }
.section--1 #sso-login-form form .row label { display: block; margin-bottom: 10px; }

/* Hàng chứa nút */
.section--1 #sso-login-form form .form-group { display: flex; flex-direction: column; }
.section--1 #sso-login-form form .form-group .col-xs-6 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* Nút */
.section--1 #sso-login-form form .form-group .col-xs-6 button {
  cursor: pointer;
  width: calc((100% - 20px) / 2);
  height: 44px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  outline: none;
}
.section--1 #sso-login-form form .form-group .col-xs-6 .btn-submit {
  background: #EC5500;
  color: #fff;
}
.section--1 #sso-login-form form .form-group .col-xs-6 .btn-reset {
  background: #fff;
  color: #EC5500;
  border: 1px solid #EC5500;
}

/* Khối "Bạn không có tài khoản ZingID" + link */
.section--1 #sso-login-form > .row {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section--1 #sso-login-form > .row .text-right {
  color: #9A9A9A;
  position: relative;
  margin-top: 10px;
}
.section--1 #sso-login-form > .row .text-right::before,
.section--1 #sso-login-form > .row .text-right::after {
  content: '';
  width: 25px;
  height: 1px;
  background: #B0B0B0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section--1 #sso-login-form > .row .text-right::before { left: -40px; }
.section--1 #sso-login-form > .row .text-right::after  { right: -40px; }
.section--1 #sso-login-form > .row a {
  display: block;
  color: #EC5500;
  text-decoration: underline;
  margin: 5px 0;
}
