/*
-----------------------------------------------------------------------
	Form CSS
-----------------------------------------------------------------------
*/

// Contact Form Style
.contact-form {
  .contact-form-wrapper {
    .section-title {
      margin-bottom: 0;
      .title {
        color: $black-222;
        font-size: 27px;
        font-weight: 600;
        margin-bottom: 15px;
      }
    }
    .form-group {
      margin-bottom: 30px;
      .form-control {
        background-color: transparent;
        border: 1px solid #eeeeee;
        border-radius: 0;
        color: $black-999;
        font-size: 13px;
        font-weight: 500;
        height: 62px;
        padding: 2px 25px;
        @include placeholder {
          color: $black-999;
          font-size: 13px;
          font-weight: 500;
        }
        &:focus {
          border-color: $theme-color3;
          box-shadow: none;
          outline: none;
        }
        &.textarea {
          min-height: 152px;
          padding: 29px 25px;
        }
      }
      .btn-theme {
        background-color: $black-333;
        border: none;
        margin-top: 46px;
        border-radius: 0;
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        min-width: 45px;
        padding: 20px 40px 20px;
        &:hover {
          background-color: #0A1039;
        }
      }
    }
  }
}

.login-form {
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-shadow: 0 0 6px rgb(0 0 0 / 10%);
  padding: 37px 40px 65px;
  margin-top: 100px;
  margin-bottom: 100px;
  @media #{$lg-device} {
    padding: 25px 10px 30px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .login-form-wrapper {
    .form-group {
      .form-control {
        background: #ffffff none repeat scroll 0 0;
        border: 1px solid #ebebeb;
        border-radius: 0;
        box-shadow: none;
        color: #333333;
        font-size: 14px;
        height: 40px;
        margin-bottom: 20px;
        padding-left: 10px;
        width: 100%;
      }
    }
    .btn-theme {
      border-radius: 0;
      border: none;
      color: #fff;
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      line-height: 1;
      padding: 17px 0px;
      text-align: center;
      min-width: 115px;
      &:hover {
        background-color: $heading-color;
      }
    }
    .btn-forgot {
      color: $heading-color;
      float: right;
      font-size: 14px;
      margin-top: 12px;
      @media #{$xxs-device} {
        font-size: 12px;
      }
      &:hover {
        color: $theme-color;
      }
    }
    .btn-create {
      color: $heading-color;
      display: inline-block;
      margin-top: 17px;
      font-size: 14px;
      @media #{$xxs-device} {
        font-size: 12px;
        margin-top: 8px;
      }
      &:hover {
        color: $theme-color;
      }
    }
  }
  .form-group-info {
    margin-top: 20px;
  }
}

// Comment Form Style
.comment-form {
  .comment-form-content {
    .form-group {
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
      .form-control {
        background-color: transparent;
        border: 1px solid #d1d1d1;
        border-radius: 0;
        box-shadow: none;
        color: #2f2f2f;
        font-size: 14px;
        height: 60px;
        padding: 1px 20px;
        @include transition(.3s);
        @include placeholder {
          color: #707070;
          font-size: 14px;
        }
        &:focus {
          border-color: #ddd;
        }
        &.textarea {
          height: 150px;
          margin-bottom: 37px;
          padding: 22px 20px 2px 20px;
        }
      }
      .btn-theme {
        background-color: #1d1d1d;
        border: none;
        border-radius: 0;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 19px 45px;
        min-width: auto;
        text-transform: uppercase;
        &:hover {
          background-color: $theme-color;
          border-color: $theme-color;
        }
      }
    }
  }
}

.input-btn-group {
  align-items: center;
  border-radius: 0;
  display: flex;
  margin-top: 52px;
  .form-control {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0;
    color: $white;
    font-size: 14px;
    font-weight: 300;
    height: 57px;
    line-height: 57px;
    padding-left: 25px;
    @include placeholder {
      color: #fff;
      font-size: 14px;
      font-weight: 300;
    }
    &:focus {
      box-shadow: none;
    }
  }
  .btn-theme {
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    height: 57px;
    line-height: 52px;
    min-width: auto;
    margin-left: -1px;
    padding: 2px 34px;
    &:hover {
      background-color: $theme-color;
      border-color: $theme-color;
    }
  }
}

.form-message {
  overflow: hidden;
  @include transition(.3s);
  button {
    &.btn-close {
      border: none;
      box-shadow: none;
      background-color: transparent;
      float: right;
      font-size: 14px;
      margin-top: 0;
      text-indent: 1000px;
    }
  }
}

.form-control {
  &:focus {
    @include placeholder {
      color: transparent;
      opacity: 0;
    }
  }
}

