/* ALERT */
#userAlert{
    width: 250px;
    height: 200px;
    background: #eee;
        border-radius: 15px;
            box-shadow: 0px 0px 11px 2px #656565;
            position: absolute;
            display: none;

}
#userAlert p span{
    font-size: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
}


p,h1{
  margin: 0;
  padding: 0;
}



.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


body {
  background: linear-gradient(rgba(255, 255, 255, 0.8)), url(../img/sign_up_bg.jpg);
  font-family: Arial, Helvetica, sans-serif;
  /* background: #f0f2f5; */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 100%;
  height: 100vh;
  max-width: 500px;
  padding: 10px;
}

.logo {
  font-size: 50px;
  color: #1877f2;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.form-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
  text-align: left;
}

.form-box h2 {
  font-size: 22px;
  margin: 0;
}

.form-box p {
  color: #606770;
  font-size: 14px;
  margin-bottom: 15px;
}

.name-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.name-fields input {
  flex: 1;
}

input, select {
  width: 100%;
  padding: 10px;
  margin: 5px 0 12px;
  border: 1px solid #ccd0d5;
  border-radius: 5px;
  font-size: 14px;
}

.dob {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

input[type="date"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 12px;
  border: 1px solid #ccd0d5;
  border-radius: 5px;
  font-size: 14px;
}


.gender {
  display: flex;
  gap: 20px;
  margin: 12px 0;
  justify-content: space-evenly;
}

.gender label{
    width: 90px;
    /* height: 30px; */
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: space-between;
    border: 1px solid #ccd0d5;
    border-radius: 5px;
    padding: 7px 15px;
}

.gender label input{
      width: 14px;
}

button {
  width: 100%;
  background: #42b72a;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
}

button:hover {
  background: #36a420;
}

.login-link {
  text-align: center;
  color:#131313;
  font-size: 14px;
  margin-top: 15px;
  cursor: pointer;
}

.login-link:hover{
  color: #1877f2;
  transform: scale(1.1);
}




/* dob field */

    .dob-container {
      display: flex;
      gap: 10px;
      align-items: center;
      font-family: Arial, sans-serif;
    }

    .dob-container label {
      font-size: 14px;
      font-weight: bold;
      margin-right: 10px;
    }

    .dob-container select {
      padding: 6px 10px;
      margin: 12px 0;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.3s;
      color: #4e4e4e;
    }

    .dob-container select:focus {
      border-color: #000;
      outline: none;
    }


    /* google facebook */
.social-login{
    width: 90%;
    margin: 0px auto;
    display: flex
;
    /* flex-direction: column; */
    gap: 45px;
}

.social-login button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-login button i {
  margin-right: 8px;
}

.facebook {
  /* color: #3b5998; */
  background: #3b5998 !important;
  color: #fff;
}

.facebook:hover {
  background: #0866ff !important;
  color: #fff;
}

.google {
  color: #fff ;
  background: #db4437 !important;
}

.google:hover {
  background: #c5221f !important;
  color: #fff;
}










/* 📱 Mobile Responsive */
@media (max-width: 480px) {
  .form-box {
    padding: 15px;
  }

  .name-fields {
    flex-direction: column;
  }

  .dob {
    flex-direction: column;
  }

  .gender {
    flex-direction: column;
  }

  .logo {
    font-size: 38px;
  }
}
