/* Reset and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  
  /* Header styles */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  .header a > img{
    width: 60px;
  }
  
  .login-btn {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .login-btn:hover {
    background-color: #0056b3;
  }
  
  /* Main content styles */
  .content {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 6rem;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
  }
  
  .content h1 {
    font-size: 1.8rem;
    color: #333;
    
  }
  
  /* Illustration styles */
  .illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .person {
    max-width: 100px;
    height: auto;
  }

  .container {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .container:hover{
    box-shadow: 0px 0px 7px black;
    border-radius: 8px;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  
  .social-signup {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .social-btn {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background: #f5f5f5;
    transition: background 0.3s;
  }
  
  .social-btn:hover {
    background: #eaeaea;
  }
  
  .signup-form {
    margin-top: 20px;
  }
  
  .form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .password-field {
    display: flex;
    align-items: center;
  }
  
  .password-field input {
    flex: 1;
  }
  
  .password-field .show-password {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 5px;
  }
  
  label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    cursor: pointer;
  }
  
  .submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
  }
  
  .submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  p {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
  }
  
  p a {
    color: #1a73e8;
    text-decoration: none;
  }
  
  
  /* Responsive design */
  @media screen and (min-width:320px) and (max-width:768px) {
    .header{
        /* display: none; */
    }
    .illustration {
      flex-direction: column;
      gap: 10px;
    }

    .content{
      gap: 0rem;
      padding: 20px 16px;
      margin-bottom: 0;
    }
  
    .person {
      max-width: 180px;
    }
   
    .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .content h1 {
      font-size: 22px;
    }
    .container{
        justify-content: center;
        align-items: center;
        width: 300px;
    }
  
    .login-btn {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
    .form-row {
        flex-direction: column;
      }
    
    .social-btn {
        font-size: 0.8rem;
      }
  }




  footer {
    background-color:#007ab3;
    color: white;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 15px;
  }
  
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
    font-size: 14px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid whitesmoke;
    padding-top: 10px;
    width: 100%;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #f39c12;
  }