@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Secular+One&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  /* --main-font-family: 'Open Sans', sans-serif; */
  --main-font-family: "Ubuntu";
  /* --heading-font-family: 'Playfair Display', serif; */
  /* --heading-font-family: 'Montserrat', sans-serif; */
  --heading-font-family: "Ubuntu", sans-serif;
  --main-color: #0759ad;
  --color-blue-2: #30adef;
  --bg-color: #d8dfe3;
  --bg-textarea: rgba(13, 110, 253, 0.25);
  --bg-textare: #eef7ff;
  --link-blue-2: #0a58ca;
  --link-blue: #0e2e67;
  --main-blue: #004778;
  --optional-color: #2e3ab8;
  --white-color: #ffffff;
  --black-color: #020202;
  --color-gray: #6b7c8f;
  --color-yellow: #ffc107;
  --color-green: #2a852e;
  --color-green-2: #1f9324;
  --color-green-3: var(--color-green-3);
  --color-red: #d5182a;
  --color-border: #e1e1e1;
  --color-noise: #212529;
  --paragraph-color: #484847;
  --font-size: 16px;
  --transition: 0.4s;
  --main-birdy: #000f30;
  --main-birdy-2: #26b0ff;
  --main-gray: #dde1e2;
}

body.login-or-register {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-color);
  /* =========== START LOGIN PAGE ============ */
}
body.login-or-register section.section-form-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 40px 0;
  margin-bottom: 40px;
}
body.login-or-register section.section-form-content .container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-height: 600px;
  margin-top: 15vh;
  padding: 0;
}
body.login-or-register section.section-form-content {
  /* Left Side - Login Form */
}
body.login-or-register section.section-form-content .form-container {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.login-or-register section.section-form-content .logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
body.login-or-register section.section-form-content .logo i {
  font-size: 32px;
  color: var(--link-blue);
  margin-right: 10px;
}
body.login-or-register section.section-form-content .logo h1 {
  font-size: 28px;
  color: var(--black-color);
  font-weight: 700;
}
body.login-or-register section.section-form-content .welcome-text {
  margin-bottom: 10px;
}
body.login-or-register section.section-form-content .welcome-text h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 900;
}
body.login-or-register section.section-form-content .welcome-text p {
  color: var(--black-color);
  font-size: 16px;
}
body.login-or-register section.section-form-content .login-form {
  width: 100%;
}
body.login-or-register section.section-form-content .form-group {
  margin-bottom: 12px;
  position: relative;
}
body.login-or-register section.section-form-content .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--black-color);
  font-weight: 500;
}
body.login-or-register section.section-form-content .input-with-icon {
  position: relative;
}
body.login-or-register section.section-form-content .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--link-blue);
}
body.login-or-register section.section-form-content .form-select,
body.login-or-register section.section-form-content .form-control {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid var(--link-blue);
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
body.login-or-register section.section-form-content .form-select:focus,
body.login-or-register section.section-form-content .form-control:focus {
  border-color: var(--link-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.1);
}
body.login-or-register section.section-form-content .form-select {
  padding: 11px;
  padding: 15px 15px 15px 45px;
}
body.login-or-register section.section-form-content .remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
body.login-or-register section.section-form-content .remember-me {
  display: flex;
  align-items: center;
}
body.login-or-register section.section-form-content .remember-me input {
  margin-right: 8px;
}
body.login-or-register section.section-form-content .forgot-password {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
body.login-or-register section.section-form-content .forgot-password:hover {
  color: #3a5be0;
  text-decoration: underline;
}
body.login-or-register section.section-form-content .login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(to right, var(--link-blue), #6a8bff);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}
body.login-or-register section.section-form-content .login-btn:hover {
  background: linear-gradient(to right, #3a5be0, #5a7bff);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
}
body.login-or-register section.section-form-content .social-login {
  text-align: center;
  margin-bottom: 25px;
}
body.login-or-register section.section-form-content .social-login p {
  color: var(--black-color);
  margin-bottom: 15px;
  position: relative;
}
body.login-or-register section.section-form-content .social-login p:before,
body.login-or-register section.section-form-content .social-login p:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background-color: #eee;
}
body.login-or-register section.section-form-content .social-login p:before {
  left: 0;
}
body.login-or-register section.section-form-content .social-login p:after {
  right: 0;
}
body.login-or-register section.section-form-content .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
body.login-or-register section.section-form-content .social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.login-or-register section.section-form-content .facebook {
  background-color: #3b5998;
}
body.login-or-register section.section-form-content .google {
  background-color: #dd4b39;
}
body.login-or-register section.section-form-content .twitter {
  background-color: #1da1f2;
}
body.login-or-register section.section-form-content .social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
body.login-or-register section.section-form-content .signup-link {
  text-align: center;
  color: var(--black-color);
}
body.login-or-register section.section-form-content .signup-link a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 600;
}
body.login-or-register section.section-form-content .signup-link a:hover {
  text-decoration: underline;
}
body.login-or-register section.section-form-content {
  /* Right Side - Visual Content */
}
body.login-or-register section.section-form-content .visual-container {
  flex: 1;
  min-height: 355px;
  background: linear-gradient(135deg, var(--link-blue) 0%, #3a5be0 100%);
  color: white;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body.login-or-register section.section-form-content .visual-container img.logo-right-side {
  right: 15px;
  top: 15px;
  position: absolute;
  border-radius: 7px;
  display: none;
}
body.login-or-register section.section-form-content .visual-content {
  position: relative;
  z-index: 2;
}
body.login-or-register section.section-form-content .visual-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}
body.login-or-register section.section-form-content .visual-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}
body.login-or-register section.section-form-content .features {
  list-style: none;
  margin-bottom: 40px;
}
body.login-or-register section.section-form-content .features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 17px;
}
body.login-or-register section.section-form-content .features i {
  margin-right: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.login-or-register section.section-form-content .stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
body.login-or-register section.section-form-content .stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.login-or-register section.section-form-content .stat-number {
  font-size: 32px;
  font-weight: 700;
  display: block;
}
body.login-or-register section.section-form-content .stat-label {
  font-size: 14px;
  opacity: 0.8;
}
body.login-or-register section.section-form-content {
  /* Decorative elements */
}
body.login-or-register section.section-form-content .circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
body.login-or-register section.section-form-content .circle-1 {
  width: 200px;
  height: 200px;
  top: -80px;
  right: -80px;
}
body.login-or-register section.section-form-content .circle-2 {
  width: 150px;
  height: 150px;
  bottom: -60px;
  left: -60px;
}
body.login-or-register section.section-form-content {
  /* Responsive Design */
}
@media (max-width: 992px) {
  body.login-or-register section.section-form-content .container {
    flex-direction: column;
    width: 95%;
    max-width: 525px;
  }
  body.login-or-register section.section-form-content .visual-container {
    order: -1;
    padding: 40px 5vw;
  }
  body.login-or-register section.section-form-content .form-container {
    padding: 20px 20px;
  }
  body.login-or-register section.section-form-content .visual-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  body.login-or-register section.section-form-content .remember-forgot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  body.login-or-register section.section-form-content .stats {
    flex-direction: row;
    gap: 20px;
  }
  body.login-or-register section.section-form-content .visual-content h2 {
    font-size: 24px;
  }
}
body.login-or-register {
  /* =========== END LOGIN PAGE ============ */
}
body.login-or-register .nav-button-blue-register {
  width: 250px;
  padding: 11px 25px;
  border-radius: 3px;
  color: var(--white-color);
  background-color: var(--link-blue);
  border: 1px solid #0a58ca;
  font-size: 1rem;
  transition: 0.5s;
}
body.login-or-register .nav-button-blue-register:hover {
  color: var(--white-color);
  background-color: var(--main-blue);
  transition: 0.5s;
}
body.login-or-register .signature-form {
  width: 100%;
  font-weight: 400;
  font-size: clamp(11px, 2vw, 14px);
  color: var(--color-gray);
}
body.login-or-register .signature-form a {
  color: var(--link-blue-2);
}
body.login-or-register .new-account {
  padding-left: 25px;
}
body.login-or-register .new-account a {
  color: var(--link-blue-2);
}
body.login-or-register .new-account a.link-new-account {
  font-weight: 800;
  margin-left: 15px;
}
body.login-or-register .content-social-media-connection {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-evenly;
  margin: 20px 0px;
}
body.login-or-register .content-social-media-connection button.btn-register {
  padding: 0px;
  font-size: 0.95rem;
  padding-left: 14px;
  color: var(--white-color);
  min-width: 155px;
  border-radius: 3px;
  transition: 0.5s;
}
body.login-or-register .content-social-media-connection button.btn-register i {
  padding: 10px;
  padding-left: 17px;
  padding-right: 17px;
  border-left: 1px solid var(--white-color);
  margin-left: 10px;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-google {
  border: 2px solid #bf3727;
  background-color: #bf3727;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-google i {
  color: #fff;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-google:hover {
  border: 2px solid #750c00;
  background-color: #750c00;
  transition: 0.5s;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-facebook {
  border: 2px solid #4b67a4;
  background-color: #4b67a4;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-facebook i {
  color: #fff;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-facebook:hover {
  border: 2px solid #293858;
  background-color: #293858;
  transition: 0.5s;
}
body.login-or-register .content-social-media-connection button.btn-register.btn-x-twitter {
  border: 2px solid var(--color-noise);
  background-color: var(--color-noise);
}
body.login-or-register .content-social-media-connection button.btn-register.btn-x-twitter i {
  color: var(--white-color);
}
body.login-or-register .content-social-media-connection button.btn-register.btn-x-twitter:hover {
  border: 2px solid var(--black-color);
  background-color: var(--black-color);
  transition: 0.5s;
}
body.login-or-register .successfully-registered {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}
body.login-or-register .successfully-registered i {
  font-size: 2.8rem;
  color: var(--color-green);
}
body.login-or-register .successfully-registered h1 {
  font-size: 1.3rem;
  color: var(--color-green);
}
body.login-or-register .successfully-registered p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: var(--paragraph-color);
  text-align: center;
}
body.login-or-register .successfully-registered .login-after-register {
  font-weight: 600;
  transition: 0.5s;
}
body.login-or-register .successfully-registered .login-after-register:hover {
  color: var(--color-green);
  transition: 0.5s;
}
body.login-or-register {
  /******** LOADING PAGE ********/
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
body.login-or-register #loading {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.729);
  position: absolute;
}
body.login-or-register #loader {
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 1;
  width: 65px;
  height: 65px;
  margin: -20px 0 0 -20px;
  border: 12px solid #fff;
  border-radius: 50%;
  border-top: 12px solid var(--main-color);
  border-bottom: 12px solid var(--main-color);
  width: 85px;
  height: 85px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8), inset 0px 0px 5px rgba(0, 0, 0, 0.8);
  -webkit-animation: spin 0.9s linear infinite;
  animation: spin 0.9s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body.only-register section.section-form-content {
  height: auto;
  margin-top: 0;
}
body.only-register section.section-form-content .container {
  width: 95%;
  max-width: 1400px;
}
body.only-register .group-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.only-register .form-group {
  width: 100%;
}
body.only-register .form-group label {
  margin-bottom: 0px !important;
}

/*# sourceMappingURL=login_register.css.map */
