.auth-page {
    max-width: 1200px;
    margin: 50px auto;
}
.auth-page .col-lg-6 {
    padding: 25px 40px;
}
.auth-page .offcanvas-body {
    padding: 25px 0;
}
.auth-page .login-method {
    border: 0;
    flex-direction: row;
    flex-wrap: nowrap;
}
.auth-page .login-method a{
    margin: 7px;
    line-height: 28px;
}
.auth-page p {
    color: var(--third-color);
    font-size: 15px;
    letter-spacing: .3px;
    font-weight: 300;
}
.auth-page p a {
    color: var(--second-color);
    font-weight: 600;
}
.auth-section-text {
    text-align: center;
}
.auth-section-text h5 {
    margin-bottom: 25px;
}
button#change-auth {
    text-transform: capitalize;
    margin-top: 25px;
    background-color: #f5f5f5;
    padding: 12px 20px;
    letter-spacing: .5px;
}
.login-section {
    border-right: 1px solid var(--border-color);
}
.register-section{
    display: none;
    border-right: 1px solid var(--border-color);
}
label i, .required {
    color: #ff0404;
    font-size: 20px;
    position: relative;
    top: 5px;
}
.auth-page .form-control {
    height: 48px;
}

.card-auth {
    padding: 40px 30px;
    border: 0;
    box-shadow: 0 0 24px 2px #00000038;
    border-radius: 18px;
    max-width: 700px;
    width: 100%;
    margin: auto;
}
.card-auth .form-control {
    background-color: #f1f1f1;
    border: 0;
    color: #444;
    height: 50px;
}
.card-auth .form-control::placeholder {
    color: #a1a1a1;
    opacity: 1;
}
.card-auth .form-control::-ms-input-placeholder {
    color: #a1a1a1;
}
.card-auth .title{
    font-size: 32px;
    font-weight: 600;
}
.auth-bg {
    min-height: 325px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: var(--section-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1s ease;
}
.section-auth{
    padding-block: 70px;
    margin-bottom: -1rem;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-inline: 18px;
}
.avatar-upload {
    position: relative;
    max-width: 192px;
    margin: auto;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: calc(50% - 19px);
    z-index: 1;
    bottom: -15px;
}
.avatar-upload .avatar-edit input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.avatar-upload .avatar-edit label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.avatar-upload .avatar-edit label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.avatar-upload .avatar-edit label svg{
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    fill: none;
}
.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-image: url('../../assets/images/default_image.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}
.avatar-upload .avatar-preview .drop-zoon__preview-image {
  border-radius: 50%;
  z-index: 0;
}
.upload-area__drop-zoon {
  position: relative;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed #000;
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
  background-color: #fff;
  padding: 10px;
}
.drop-zoon__paragraph {
    font-size: 14px !important;
    color: var(--third-color);
    margin: 5px 0;
    font-weight: 300;
    transition: opacity 300ms ease-in-out;
}
.drop-zoon:hover .drop-zoon__icon, .drop-zoon:hover .drop-zoon__paragraph {
  opacity: 0.7;
}
.drop-zoon__icon svg {
  fill: none;
  width: 50px;
  height: 50px;
}
.drop-zoon__icon svg path {
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}
.drop-zoon__loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: #000;
  z-index: 10;
}
.drop-zoon__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3125rem;
  border-radius: 10px;
  display: none;
  z-index: 1000;
  transition: opacity 300ms ease-in-out;
  background-color: #fff;
}
.drop-zoon:hover .drop-zoon__preview-image {
  opacity: 0.8;
}
.drop-zoon__file-input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
.upload-area .error {
  display: flex;
  justify-content: center;
  margin: 5px auto;
}
.drop-zoon--over {
  border-color: rgb(63, 134, 255);
}
.drop-zoon--over .drop-zoon__icon, .drop-zoon--over .drop-zoon__paragraph {
  opacity: 0.7;
}
.drop-zoon--Uploaded .drop-zoon__icon, .drop-zoon--Uploaded .drop-zoon__paragraph {
  display: none;
}
.upload-area__file-details {
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  transition: none 500ms ease-in-out;
  transition-property: opacity, visibility;
  transition-delay: 500ms;
}
.file-details--open {
  height: auto;
  visibility: visible;
  opacity: 1;
}
.uploaded-file {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  transition: none 500ms ease-in-out;
  transition-property: visibility, opacity;
}
.uploaded-file--open {
  visibility: visible;
  opacity: 1;
}
.uploaded-file__icon-container {
  position: relative;
  margin-right: 0.3125rem;
}
.uploaded-file__icon {
  font-size: 3.4375rem;
  color: rgb(63, 134, 255);
}
.uploaded-file__info {
  position: relative;
  top: -0.3125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.uploaded-file__name {
  width: 100%;
  max-width: 180px;
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  direction: ltr;
}
.drop-zoon__title {
    font-size: 20px;
}
.drop-zoon__title label{
    color: var(--main-color);
}
@media(max-width: 768px){
    .section-auth {
        padding-block: 20px;
    }
    .auth-page {
        margin: 20px auto;
    }
    .card-auth .title {
        font-size: 28px;
    }
    .auth-page p {
        font-size: 15px;
    }
    .card-auth .form-control {
        height: 48px;
    }
}

@media(max-width: 576px){
    .mb-3 {
        margin-bottom: 0.5rem !important;
    }
    .auth-page {
        margin: 10px auto;
    }
    .auth-page .col-lg-6 {
        padding: 20px;
    }
    .auth-page p {
        font-size: 14px;
    }
    .auth-page .form-label {
        font-size: 15px;
    }
    .auth-page .form-control {
        height: 44px;
    }
    .card-auth {
        padding: 20px;
    }
    .card-auth .card-body, .card-auth .title, .card-auth p {
        padding-inline: 0;
    }
}