* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: radial-gradient(circle at top, #10121f, #0a0b14);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
}
.container {
  display: flex;
  width: 100%;
  height: 100vh;
}
.left {
  width: 40%;
  background: #0a0f1c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right {
  width: 60%;
  background: url("../Assets/Images/login.png") no-repeat center center/cover;
}
.card {
  background: #0a0f1c;
  border-radius: 24px;
  padding: 60px;
  width: 520px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.logo img {
  width: 40px;
  height: auto;
}

.logo h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

p.subtext {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 30px;
  line-height: 1.6;
}

form label {
  display: block;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 6px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="file"] {
  width: 100%;
  background: #26293d;
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
}

form input::placeholder {
  color: #888;
}

#upload-btn {
    display: none;
}

.custom-upload-label {
    display: inline-block;
    background: #26293d;
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s ease;
}

/* .upload-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #a1a1aa;
      background: #26293d;
      border-radius: 10px;
      padding: 14px;
      cursor: pointer;
      margin-bottom: 20px;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

 .upload-btn:hover {
      background: #303455;
    } */

button {
  width: 100%;
  background: #f8f8f8;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1rem;
}

button:hover {
  background: #e5e5e5;
}


.login {
  text-align: center;
  margin-top: 24px;
  font-size: 1rem;
  color: #a1a1aa;
}

.login a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.login a:hover {
  text-decoration: underline;
}

.icon {
  font-size: 1.5rem;
}

/* @media (max-width: 600px) {
      .card {
        width: 90%;
        padding: 40px 25px;
      } */

h3 {
  font-size: 1.3rem;
}

p.subtext {
  font-size: 0.95rem;
}
.img {
  flex: 1;
  background: url("img.png") center center/cover no-repeat;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
    height: 100vh;
  }

  .right {
    display: none;
  }

  .card {
    width: 90%;
    max-width: 420px;
    margin: 40px auto;
    padding: 40px 30px;
  }

  h3 {
    font-size: 1.3rem;
  }

  p.subtext {
    font-size: 0.95rem;
  }
}
