/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  /* Body Styling */
  body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Login Container */
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  /* Login Card */
  .login-card {
    background-color: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 380px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
  }
  
  .login-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  .logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
  }
  
  .subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
  }
  
  /* Input Fields */
  .input-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .input-group label {
    font-size: 15px;
    color: #333;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: border 0.3s ease;
  }
  
  .input-group input:focus {
    border: 1px solid #d32f2f;
  }
  
  /* Buttons */
  .login-btn {
    width: 100%;
    padding: 15px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .login-btn:hover {
    background-color: #c2185b;
  }
  
  /* Divider */
  .divider {
    margin: 25px 0;
    color: #333;
    font-weight: 500;
  }
  .divider2 {
    margin: 5px 0;
    color: #333;
    font-weight: 500;
  }
  
  /* Social Login */
  .social-login button {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .google-btn {
    background-color: #db4437;
    color: white;
  }
  
  .facebook-btn {
    background-color: #3b5998;
    color: white;
  }
  
  .google-btn img,
  .facebook-btn img {
    width: 20px;
    margin-right: 12px;
  }
  
  .social-login button:hover {
    background-color: #ddd;
    opacity: 0.9;
  }
  
  /* Sign up text */
  .register-text {
    font-size: 14px;
  }
  
  .register-text a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
  }
  
  .register-text a:hover {
    text-decoration: underline;
  }