/* :: CONTENT :: */
.content {
  padding: 0 15px;
}
@media only screen and (max-width: 991.98px) {
  .form-container {
    padding: 100px 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .form-container {
    width: 100%;
  }
}

/* form-logo */
.form-logo {
  width: 120px;
  margin-bottom: 20px;
}

/* form-head */
.form-head {
  margin-bottom: 30px;
}
.form-head .form-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.form-head .form-title img {
  min-width: 26px;
  width: 26px;
  margin-right: 10px;
}
[dir="rtl"] .form-head .form-title img {
  margin-right: unset;
  margin-left: 10px;
}

/* f-label */
.f-label {
  display: block;
}
.f-label:not(:last-child) {
  margin-bottom: 15px;
}

/* f-input */
.f-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 44px 0 20px;
  min-width: 340px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid var(--border);
  box-shadow: -4px 4px 0 var(--primary-shadow);
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
}
.f-input::placeholder {
  font-weight: 400;
  color: #888;
}
.f-input:hover {
  box-shadow: 0 0 0 var(--primary-shadow);
}
.f-input:focus {
  border-color: #888;
  box-shadow: 0 0 0 var(--primary-shadow);
}

/* pass-link */
.login-form .pass-link {
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--darkGray);
}
.login-form .pass-link:hover {
  text-decoration: underline;
}

/* or */
.form-container .or {
  position: relative;
  text-align: center;
  margin: 20px auto;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-container .or::before,
.form-container .or::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 43%;
  background-color: var(--border);
}
.form-container .or::before {
  left: 0;
}
.form-container .or::after {
  right: 0;
}

/* comment */
.form-container .comment {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--darkGray);
}
.form-container .comment a {
  color: var(--primary);
  text-decoration: underline;
}

/* right-col */
.content .right-col {
  position: relative;
  background: radial-gradient(109.18% 191.18% at 50% 50%, rgba(54, 54, 204, 0.79) 19.92%, rgba(73, 73, 231, 0.32) 85.29%), var(--primary);
  min-height: 100vh;
}
@media only screen and (max-width: 991.98px) {
  .content .right-col {
    background: unset;
    min-height: unset;
  }
}

/* rc-img */
.right-col .rc-img {
  width: 300px;
}

/* text */
.content .right-col .text {
  position: absolute;
  left: 50px;
  bottom: 30px;
}
[dir="rtl"] .content .right-col .text {
  left: unset;
  right: 50px;
}
@media only screen and (max-width: 991.98px) {
  .content .right-col .text {
    all: unset;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .content .right-col .text {
    text-align: left;
  }
}

/* para-3 */
.content .right-col .text .para-3 {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.content .right-col .text .para-3 a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
}
.content .right-col .text .para-3 a:hover {
  text-decoration: underline;
}

/* links */
.content .right-col .text .links {
  margin-bottom: 10px;
}
.content .right-col .text .links a {
  font-size: 13px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #ffffff;
}
.content .right-col .text .links a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 991.98px) {
  .content .right-col .text .para-3,
  .content .right-col .text .para-3 a,
  .content .right-col .text .links a {
    color: var(--darkGray);
  }
}