/* 🧼 Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, html {
    height: 100%;
    width: 100%;
  }
  
  body {
    background: url('photo.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  /*  Container */
  .container {
    width: 100%;
    max-width: 1200px;
  }
  a{
    text-decoration: none;
}
  .card {
    display: flex;
    height: 550px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  /* ✅ SIGN-UP FORM LEFT SIDE */
  .card-left {
    width: 50%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* ✅ IMAGE RIGHT SIDE */
  .card-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-overlay {
    width: 100%;
    height: 100%;
    background: url('photo.jpg') no-repeat center center/cover;
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .image-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 10px solid white;
    border-radius: 30px;
    z-index: 1;
  }
  
  .image-overlay h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
  }
  
  /* 💫 Form & Buttons */
  .brand {
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .highlight {
    color: #FE9042;
    font-weight: 700;
  }
  
  .card-left h2 {
    margin-bottom: 25px;
    color: #000;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input {
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    background-color: #F0F0F0;
    font-size: 1rem;
  }
  
  button {
    padding: 12px;
    font-size: 1rem;
    background: linear-gradient(to right, #465A31, #FE9042);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    opacity: 0.9;
  }
  
  .bottom-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #333;
  }
  
  /* 📱 Responsive */
  @media (max-width: 768px) {
    .card {
      flex-direction: column;
      height: auto;
    }
  
    .card-right {
      display: none;
    }
  
    .card-left {
      width: 100%;
      padding: 30px 20px;
      text-align: center;
    }
  
    .brand {
      font-size: 1.2rem;
    }
  
    .card-left h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
  
    input {
      font-size: 0.95rem;
      padding: 10px 14px;
    }
  
    button {
      font-size: 0.95rem;
      padding: 10px;
    }
  
    .bottom-text {
      font-size: 0.85rem;
    }
  }
  