:root{
    font-family: Poppins, sans-serif;
  }
  
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  
}

body{
  overflow-x: hidden;
}

a{
    color: #101828;
    text-decoration: none;
}    

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--f-default-color-primary);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--f-default-color-primary), transparent 20%);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.main{
  overflow: hidden;
}

.main-app{
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.logo-area .logo img{
  width: 220px;
  margin: auto;
}

.logo-area-1{
  display: none;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .logo-area-1{
    display: block;
    pointer-events: all;
  }
}

/*
=========== Left Side ============
*/
.auth-left-side{
  background: var(--f-default-color-tertiary);
  min-height: 100vh;
}

/*--------------------------------------------------------------
Auth alerts =====
--------------------------------------------------------------*/


/*--------------------------------------------------------------
App-auth-body & Login =====
--------------------------------------------------------------*/
.auth-left-side .app-auth-body{
  margin-top: 20vh;
  color: var(--f-default-color-quaternary);
}

.app-auth-body .auth-container {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 576px) {
  .app-auth-body .auth-container {
    margin: 0 15px;
  }
}

.app-auth-body .auth-form {
  padding: 40px 35px;
  display: none;
}

.app-auth-body .auth-form.active {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@media (max-width: 576px) {
  .app-auth-body .auth-form {
    padding: 30px 25px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.app-auth-body .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.app-auth-body .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--f-default-color-quaternary);
  margin-bottom: 8px;
}

.app-auth-body .form-header p {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 40%);
  font-size: 15px;
  margin: 0;
}

.app-auth-body .input-group {
  position: relative;
  margin-bottom: 20px;
}

.app-auth-body .input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 50%);
  font-size: 16px;
  transition: color 0.3s;
  pointer-events: none;
}

.app-auth-body .input-group .form-control {
  padding: 16px 16px 16px 50px;
  border: 1.5px solid color-mix(in srgb, var(--f-default-color-quaternary), transparent 85%);
  background: var(--f-default-color-tertiary);
  color: var(--f-default-color-quaternary);
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
}

.app-auth-body .input-group .form-control:focus {
  border-color: var(--f-default-color-quaternary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--f-default-color-quaternary), transparent 90%);
  outline: none;
}

.app-auth-body .input-group .form-control:focus~.input-icon {
  color: var(--f-default-color-quaternary);
}

.app-auth-body .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 60%);
}

.app-auth-body .input-group .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 50%);
  font-size: 16px;
  z-index: 3;
  transition: color 0.3s;
}

.app-auth-body .input-group .password-toggle:hover {
  color: var(--f-default-color-quaternary);
}

.app-auth-body .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .app-auth-body .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.app-auth-body .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.app-auth-body .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-auth-body .form-options .remember-me input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--f-default-color-quaternary), transparent 70%);
  border-radius: 4px;
  background: var(--f-default-color-tertiary);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.app-auth-body .form-options .remember-me input[type=checkbox]:checked {
  background: var(--f-default-color-quaternary);
  border-color: var(--f-default-color-quaternary);
}

.app-auth-body .form-options .remember-me input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.app-auth-body .form-options .remember-me label {
  font-size: 14px;
  color: var(--f-default-color-quaternary);
  cursor: pointer;
}

.app-auth-body .form-options .forgot-password {
  font-size: 14px;
  color: var(--f-default-color-quaternary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.app-auth-body .form-options .forgot-password:hover {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 20%);
}

.app-auth-body .terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.app-auth-body .terms-check input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--f-default-color-quaternary), transparent 70%);
  border-radius: 4px;
  background: var(--f-default-color-tertiary);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2px;
  flex-shrink: 0;
}

.app-auth-body .terms-check input[type=checkbox]:checked {
  background: var(--f-default-color-primary);
  border-color: var(--f-default-color-secondary);
}

.app-auth-body .terms-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid rgb(255, 255, 255);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.app-auth-body .terms-check label {
  font-size: 13px;
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 20%);
  line-height: 1.4;
  cursor: pointer;
}

.app-auth-body .terms-check label a {
  color: var(--f-default-color-quaternary);
  text-decoration: none;
  font-weight: 500;
}

.app-auth-body .terms-check label a:hover {
  text-decoration: underline;
}

.app-auth-body .auth-btn {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.app-auth-body .auth-btn.primary-btn {
  background: var(--f-default-color-primary);
  color: var(--f-default-color-quaternary);
}

.app-auth-body .auth-btn.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.app-auth-body .auth-btn.primary-btn:hover {
  transform: translateY(-3px);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--f-default-color-quaternary), transparent 85%);
}

.app-auth-body .auth-btn.primary-btn:hover::before {
  left: 100%;
}

.app-auth-body .auth-btn.primary-btn:active {
  transform: translateY(0);
}


.app-auth-body .auth-btn i {
  font-size: 16px;
}

.app-auth-body .switch-form {
  text-align: center;
  margin-top: 25px;
}

.app-auth-body .switch-form span {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 40%);
  font-size: 14px;
}

.app-auth-body .switch-form .switch-btn {
  background: none;
  border: none;
  color: var(--f-default-color-quaternary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-left: 5px;
  transition: color 0.3s;
}

.app-auth-body .switch-form .switch-btn:hover {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 20%);
}

/*--------------------------------------------------------------
# Register Form
--------------------------------------------------------------*/
.registration-form-wrapper {
  position: relative;
  border-radius: 20px;
  margin: 60px 0;
  overflow: hidden;
}

.registration-form-wrapper .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.registration-form-wrapper .form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--f-default-color-quaternary), var(--f-default-color-quaternary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.registration-form-wrapper .form-header p {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 40%);
  font-size: 15px;
  margin: 0;
}

.registration-form-wrapper form {
  position: relative;
  z-index: 1;
}

.registration-form-wrapper form .form-floating {
  margin-bottom: 1rem;
}

.registration-form-wrapper form .form-floating .form-control,
.registration-form-wrapper form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--f-default-color-quaternary), transparent 85%);
  background-color: color-mix(in srgb, var(--f-default-color-tertiary), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--f-default-color-quaternary);
}

.registration-form-wrapper form .form-floating .form-control:focus,
.registration-form-wrapper form .form-floating .form-select:focus {
  border-color: var(--f-default-color-quaternary);
  box-shadow: none;
}

.registration-form-wrapper form .form-floating .form-control:focus~label,
.registration-form-wrapper form .form-floating .form-select:focus~label {
  color: var(--f-default-color-quaternary);
}

.registration-form-wrapper form .form-floating .form-control:focus~label:after,
.registration-form-wrapper form .form-floating .form-select:focus~label:after {
  background: transparent;
}

.registration-form-wrapper form .form-floating .form-control::placeholder,
.registration-form-wrapper form .form-floating .form-select::placeholder {
  color: transparent;
}

.registration-form-wrapper form .form-floating .form-control:not(:placeholder-shown)~label,
.registration-form-wrapper form .form-floating .form-select:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 40%);
}

.registration-form-wrapper form .form-floating .form-control:not(:placeholder-shown)~label:after,
.registration-form-wrapper form .form-floating .form-select:not(:placeholder-shown)~label:after {
  background: transparent;
}

.registration-form-wrapper form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 40%);
  font-weight: 500;
}

.registration-form-wrapper form .form-floating label:after {
  background: transparent;
}

.registration-form-wrapper form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.registration-form-wrapper form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--f-default-color-quaternary), transparent 70%);
}

.registration-form-wrapper form .form-check .form-check-input:checked {
  background-color: var(--f-default-color-primary);
  border-color: var(--f-default-color-primary);
}

.registration-form-wrapper form .form-check .form-check-input:focus {
  border-color: var(--f-default-color-quaternary);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--f-default-color-quaternary), transparent 85%);
}

.registration-form-wrapper form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 25%);
}

.registration-form-wrapper form .form-check .form-check-label a {
  color: var(--f-default-color-quaternary);
  text-decoration: none;
  font-weight: 600;
}

.registration-form-wrapper form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.registration-form-wrapper .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: var(--f-default-color-primary);
  color: var(--f-default-color-quaternary);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.registration-form-wrapper .btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.registration-form-wrapper .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--f-default-color-quaternary), transparent 85%);
}

.registration-form-wrapper .btn-register:hover::before {
  left: 100%;
}

.registration-form-wrapper .btn-register:active {
  transform: translateY(0);
}


.registration-form-wrapper .login-link {
  margin-top: 1.5rem;
}

.registration-form-wrapper .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--f-default-color-quaternary), transparent 30%);
}

.registration-form-wrapper .login-link p a {
  color: var(--f-default-color-quaternary);
  font-weight: 600;
  text-decoration: none;
}

.registration-form-wrapper .login-link p a:hover {
  text-decoration: underline;
}


@media (max-width: 767.98px) {
  .registration-form-wrapper {
    padding: 2rem 1.5rem;
    margin: 40px 0;
  }

  .registration-form-wrapper .form-header h2 {
    font-size: 1.8rem;
  }

  .registration-form-wrapper .form-header p {
    font-size: 1rem;
  }

}

/*
============ Right Side============
*/
.auth-right-side{
  background: var(--f-default-color-primary);
  min-height: 100vh;
  position: relative;
}

.oblique {
  transform: skewX(20deg);
  width: 100%;
  height: 50%;
  right: -10rem;
  right: 0;
  background: var(--f-default-color-primary);
}

.oblique-2 {
  transform: skewX(-20deg);
  width: 100%;
  height: 50%;
  left: 0;
  background: var(--f-default-color-primary);
}

.right-logo-area{
  position: absolute;
  top: 30vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--f-default-color-quaternary);
}


/*--------------------------------------------------------------
Footer =====
--------------------------------------------------------------*/

.footer {
    background: transparent;
    border-top: 1px solid rgba(var(--color-black-rgb), 0.09);
    background: var(--f-default-color-tertiary);
    padding-top: 20vh;
}

.footer .footer-nav li {
    display: inline-block;
    margin-right: 4px;
}

.footer .footer-nav li a {
    text-transform: uppercase;
    display: block;
    padding: 0px 15px;
    font-size: 12px;
    font-weight: 700;
    color: #97989b;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.footer .footer-nav li a:hover,
.footer .footer-nav li a:focus {
    color: var(--color-gray);
}

.footer .copyright {
    font-size: 14px;
    color: #97989b;
}

.footer .copyright strong {
    font-weight: 600;
}
