/* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
  background: black;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .container {
    display: flex;
    width: 1000px;
    height: 700px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Left side: Picture */
  .image-side {
    flex: 1;
    background-color: blue; /* Example: dark gray */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  /* Right side: Form */
  .form-side {
    flex: 1;
    background-color: white; /* Example: black or different color */
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }
  
  .form-side h2 {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
  }
  
  form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  form button {
    width: 100%;
    padding: 12px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #0052cc;
  }
  
  .form-side p {
    text-align: center;
    margin-top: 20px;
  }
  
  .form-side a {
    color: #0066ff;
    text-decoration: none;
  }
  
  .form-side a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .wrapper {
      flex-direction: column;
      height: auto;
    }
  
    .image-side {
      height: 200px;
    }
  }
  .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }
  
  .input-group label {
    margin-bottom: 5px;
    color: #fff; /* or any color you want */
    font-weight: 500;
  }
  .forgot-password {
    margin-top: 5px;
    text-align: right;
  }
  
  .forgot-password a {
    color: #6cace4; /* a nice blue, you can change */
    font-size: 0.9em;
    text-decoration: none;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  .social-login-section {
    margin-top: 20px;
    text-align: center;
  }
  
  .social-login-heading {
    font-weight: 600;
    margin-bottom: 10px;
    color: white; /* or any color that fits your design */
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  
    /* Add these two lines to center */
    justify-content: center;
    align-items: center;
  }
  
  
  .social-logo {
    width: 40px;   /* size of the logo */
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .social-logo:hover {
    transform: scale(1.1); /* slight zoom on hover */
  }
  