html, body { height: 100%; }
body { margin: 0; margin: 0; font-family: 'Poppins', sans-serif; }

@font-face {
    font-family: helvetica-ultralight;
    src: url(assets/fonts/HelveticaNeue-UltraLight.otf) format("opentype");
  }

  .loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #001B34;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Split the screen in half */
 .split {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
  }
  
  /* Control the left side */
  .left {
    left: 0;
    width: 60%;
    background-image: url("../images/computer-phone.jpg");
    background-size: cover;
    background-position-x: -10em ;
    transform:scaleX(-1);
  }
  
  /* Control the right side */
  .right {
    right: 0;    
    width: 40%;
  }
  
  /* If you want the content centered horizontally and vertically */
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .container {
    padding: 2rem 0rem;
  }
   
  @media (min-width: 576px) {
    .modal-dialog {
      max-width: 400px;
    }
    .modal-dialog .modal-content {
      padding: 1rem;
    }
  }
  .modal-header .close {
    margin-top: -1.5rem;
  }
   
  .form-title {
    margin: -2rem 0rem 2rem;
  }
   
  .btn-round {
    border-radius: 3rem;
  }

  .btn:hover{
    color: white;
    background-color:#001b34ab ;
  }

  .btn-vector-blue {
    background-color: #001B34;
    color: white;
  }
   
  .delimiter {
    padding: 1rem;
  }
   
  .social-buttons .btn {
    margin: 0 0.5rem 1rem;
  }
   
  .signup-section {
    padding: 0.3rem 0rem;
  }

  