/* General Styles */
body {
    background-color: white;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Card Styling */
  .card {
    width: 490px;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    
  }
  
  /* Logo Styling */
  .logo {
    font-size: 24px;
    font-weight: 600;
    color: #1f51ff;
    margin-bottom: 10px;
  }
  
  /* Input Fields */
  .input-group {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .input-group-text {
    background: #f1f1f1;
    border: none;
    padding: 10px 12px;
  }
  
  .form-control {
    border: none;
    box-shadow: none;
    padding: 10px;
  }
  
  /* Button Styling */
  .btn-primary {
    background-color: #4c4cff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #3a3ac9;
  }
  
  /* Toggle Password */
  .toggle-password {
    cursor: pointer;
  }
  
  /* Social Buttons */
  .social-btn {
    width: 150px;
    font-weight: 500;
  }
  
  /* Remember Me & Forgot Password */
  .text-muted {
    font-size: 14px;
  }
  
  /* Spacing Fixes */
  .mt-3 {
    margin-top: 10px !important;
  }
  