*{
  margin: 0px;
  padding: 0px;
}

/* Sofia Pro */
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-Black.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-BlackItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-BlackItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-Bold.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-BoldItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-ExtraBold.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-ExtraBoldItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-ExtraBoldItalic.woff') format('woff');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-ExtraLight.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-ExtraLightItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-ExtraLightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-Italic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-Light.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-LightItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-Medium.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-MediumItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-Regular.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-SemiBold.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-web/Sofia-Pro-SemiBoldItalic.woff2') format('woff2'),
       url('../fonts/sofia-web/Sofia-Pro-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
}
/* end of Sofia Pro */

body{
  position: relative;
  font-family: 'Sofia Pro', sans-serif;
}

.logo{
  max-width: 8rem;
}

.area{
  background: linear-gradient(120deg, #00577f, #063d5d 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.circles{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;  
}

.circles li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2){
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3){
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5){
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6){
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7){
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8){
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9){
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10){
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0%{
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100%{
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.auth-container{
  min-height: 100vh;
}

.card.card-signin {
    border: none;
    /* background: transparent; */
    color: #000;
}

.card.card-signin label {
    font-weight: 500;
    text-align: left;
    display: block;
    margin-bottom: 5px;
    color: #2a2a2a;
    font-size: 14px;
}

.form-control-dark {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 4px;
    padding: 0.8rem;
    height: auto;
}

.form-control-dark::placeholder {
    color: #aaa;
}

.form-control-dark:focus {
    background-color: #fff;
    border-color: #35255a;
    color: #333;
    box-shadow: none;
}

.auth-links a {
    color: #35255a;
    font-weight: 600;
    font-size: 14px;
}

.auth-links.enroll-links a {
  color: #363636;
  font-weight: 600;
  font-size: 14px;
}

.btn-login-new {
    background-color: #35255a;
    color: #ffffff;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
}

.btn-login-new:hover {
    background-color: #2a1b4e;
    color: #ffffff;
}

.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #8a9eb2;
    margin: 2rem 0;
}

.form-divider::before, .form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #4f5d6d;
}

.form-divider:not(:empty)::before {
    margin-right: .5em;
}

.form-divider:not(:empty)::after {
    margin-left: .5em;
}

.btn-social {
    border: 1px solid #4f5d6d;
    border-radius: 50px;
    padding: 10px;
    background-color: transparent;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-social:hover {
    background-color: #1d2935;
    color: white;
}

.btn-social img {
    height: 20px;
    margin-right: 10px;
}

.legal-text {
    font-size: 13px;
    color: #5d6a78;
    margin-top: 1.5rem;
    text-align: center;
}

.legal-text a {
    color: #363636;
    text-decoration: underline;
}

.btn-enroll {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    color: #f8f9fa;
    background-color: transparent;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

#auth-bg{
  position: relative;
  height: 100%;
  background: url(../images/auth-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 99;
  color: #FFF;
}

#auth-bg::after{
  content: '';
  background: rgba(53, 37, 90, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

#auth-bg .divider{
  width: 150px;
  height: 1px;
  background: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.register-heading {
    font-family: 'Bookmania';
}

.login-subtile {
  font-size: 10pt;
}