body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  /* min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; */
}

.login-container {
  .login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    transition: transform 0.3s ease;
  }

  .login-header {
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
  }

  .login-header::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid rgb(var(--bs-secondary-rgb));
  }

  .logo-container {
    margin-bottom: 20px;
  }

  .logo {
    width: 80px;
    height: 200px;
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    /* color: white; */
    /* border: 3px solid rgba(255, 255, 255, 0.3); */
  }

  .logo-svg {
    fill: #ffffff;
  }

  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
  }

  .login-body {
    padding: 40px 30px;
  }

  .form-floating {
    margin-bottom: 20px;
  }

  .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
  }

  .form-control:focus {
    border-color: rgb(var(--bs-secondary-rgb));
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: white;
  }

  .form-floating > label {
    color: #6c757d;
    font-weight: 500;
  }

  .btn-login {
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
  }

  .btn-login:hover {
    box-shadow: 0 10px 20px rgba(var(--bs-primary-rgb), 0.2);
  }

  .divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
  }

  .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
  }

  .divider span {
    background: white;
    padding: 0 20px;
    color: #6c757d;
    font-weight: 500;
  }

  .social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    font-size: 18px;
  }

  .forgot-password {
    text-align: center;
    margin-top: 20px;
  }

  .forgot-password a {
    color: rgb(var(--bs-secondary-rgb));
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .forgot-password a:hover {
    color: rgb(var(--bs-primary-rgb));
  }

  .signup-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
  }

  .signup-link a {
    color: rgb(var(--bs-secondary-rgb));
    text-decoration: none;
    font-weight: 600;
  }

  .signup-link a:hover {
    color: rgb(var(--bs-primary-rgb));
  }

  @media (max-width: 576px) {
    /* .login-card {
      margin: 10px;
    } */

    .login-header {
      padding: 30px 20px 20px;
    }

    .login-body {
      padding: 30px 20px;
    }

    .login-card {
      border-radius: 0;
    }
  }
}
