@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;
}

body.login-or-register section.section-form-content {
  width: 100%;
  height: 100%;
  padding: 0px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background-color: transparent;
  margin-bottom: 5%;
  margin-top: 5%;
}
body.login-or-register section.section-form-content .container-fluid {
  width: 100%;
  height: 90%;
  display: flex;
  max-width: 1850px;
  min-height: 25vw;
  border-radius: 20px;
  overflow: hidden;
}
body.login-or-register section.section-form-content .container-fluid div.sides {
  flex: 1;
}
body.login-or-register section.section-form-content .container-fluid div.head-form-info {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
body.login-or-register section.section-form-content .container-fluid div.head-form-info h2 {
  width: 100%;
}
body.login-or-register section.section-form-content .container-fluid div.head-form-info p.info-p {
  width: 100%;
  text-align: left;
}
body.login-or-register section.section-form-content .container-fluid div.head-form-info p.info-p a {
  color: var(--link-blue-2);
}
body.login-or-register section.section-form-content .container-fluid div.left-form {
  width: 50%;
  padding: 1.5vw;
  background: var(--white-color);
  border-radius: 0px;
  position: relative;
  margin: 0vw;
  display: flex;
  align-items: center;
}
body.login-or-register section.section-form-content .container-fluid div.right-form {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--white-color);
}
body.login-or-register section.section-form-content .form-select,
body.login-or-register section.section-form-content input[type=text],
body.login-or-register section.section-form-content input[type=email],
body.login-or-register section.section-form-content input[type=password] {
  font-size: 1rem;
  border-radius: 1px;
  border: 2px solid var(--color-gray);
}
body.login-or-register section.section-form-content .form-select:focus,
body.login-or-register section.section-form-content input[type=text]:focus,
body.login-or-register section.section-form-content input[type=email]:focus,
body.login-or-register section.section-form-content input[type=password]:focus {
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25) !important;
}
body.login-or-register section.section-form-content .group-field {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}
body.login-or-register section.section-form-content .group-field .form-floating {
  flex: 1;
}
body.login-or-register section.section-form-content .successfully-registered {
  display: none;
}
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);
  }
}

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