/* 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;
  }
  
  /* Signup Container */
  .signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  /* Signup Card */
  .signup-card {
    background-color: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
  }
  
  .signup-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  .logo {
    width: 120px;
    height: auto;
  }
  
  h2 {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
  }
  
  /* Input Fields */
  .input-group1 {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
  }
  .input-group2 {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
  }
  .input-group3 {
    margin-bottom: 20px;
    text-align: left;
    width: 80%;
  }
  
  .input-group1 label {
    font-size: 15px;
    color: #333;
  }
  .input-group2 label {
    font-size: 15px;
    color: #333;
  }
  .input-group3 label {
    font-size: 15px;
    color: #333;
  }
  
  .input-group1 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-group2 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-group3 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-group1 input:focus {
    border: 1px solid #d32f2f;
  }
  .input-group2 input:focus {
    border: 1px solid #d32f2f;
  }
  .input-group3 input:focus {
    border: 1px solid #d32f2f;
  }
  
  /* Buttons */
  .signup-btn {
    width: 200px;
    padding: 12px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
  }
  
  .signup-btn:hover {
    background-color: #c2185b;
  }
  
  /* Divider */
  .divider {
    margin: 10px 0;
    color: #333;
    font-weight: 500;
  }

  .divider2 {
    margin: 5px 0;
    color: #333;
    font-weight: 500;
  }
  
  /* Social Signup */
  .social-signup 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-signup button:hover {
    background-color: #ddd;
    opacity: 0.9;
  }
  
  /* Login text */
  .login-text {
    font-size: 14px;
  }
  
  .login-text a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
  }
  
  .login-text a:hover {
    text-decoration: underline;
  }