
body {
    font-family: "Roboto", sans-serif;
    background-color: #f8f9fa;
  }
  
  .login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .login-card {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }
  
  .login-card .card-body {
    padding: 2rem;
  }
  
  .login-card h5 {
    font-weight: 500;
    font-size: 1.5rem;
  }
  
  .form-label {
    font-weight: 500;
  }
  
  .btn-login {
    background-color: #1678fb;
    border-color: #1678fb;
    color: white;
    font-weight: 500;
  }
  
  .btn-login:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  .divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .divider-text span {
    padding: 7px;
    font-size: 12px;
    position: relative;
    z-index: 2;
    background-color: #fff;
  }
  
  .divider-text:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    left: 0;
    top: 50%;
    z-index: 1;
  }
  
  .btn-google {
    color: #fff !important;
    background-color: #dd4b39;
    border-color: #dd4b39;
  }
  
  .btn-google:hover {
    background-color: #c23321;
    border-color: #b82e1f;
  }
