@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900;1000&display=swap");

      /*=============== VARIABLES CSS ===============*/
      :root {
        /*========== Colors ==========*/
        /*Color mode HSL(hue, saturation, lightness)*/
        --white-color: #333e;
        --black-color: hsl(0, 0%, 0%);

        /*========== Font and typography ==========*/
        /*.5rem = 8px | 1rem = 16px ...*/
        --body-font: "Poppins", sans-serif;
        --h1-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.813rem;
      }

      /*=============== BASE ===============*/
      * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
      }

      body,
      input,
      button {
        font-family: 'Cairo', sans-serif;
        font-size: var(--normal-font-size);
        
      }

      a {
        text-decoration: none;
      }

      img {
        display: block;
        max-width: 100%;
        height: auto;
      }

      /*=============== LOGIN ===============*/
      .login {
        position: relative;
        height: 100%;
        display: grid;
        align-items: center;
      }

      .login__bg {
        position: absolute;
        width: 100%;
        height: 150%;
        object-fit: cover;
        object-position: center;
      }

      .login__form {
        position: relative;
        margin-inline: 1.5rem;
        background-color: hsla(0, 0%, 100%, 0.01);
        border: 2px solid black;
        padding: 1.5rem 1rem;
        color: var(--white-color);
        border-radius: 1rem;
        backdrop-filter: blur(16px);
        margin-top:60px;
        margin-bottom:50px;
        direction: rtl;
        
        
      }

      .login__title {
        text-align: center;
        font-size: 1.6rem;
        margin: 1.25rem 0;
        
      }

      .login__inputs,
      .login__box {
        display: grid;
        direction: rtl;
       
      }

      .login__inputs {
        row-gap: 0.5rem;
        margin-bottom: 1rem;
      }

      .login__box {
        grid-template-columns: 1fr max-content;
        column-gap: 0.75rem;
        align-items: center;
        border: 2px solid black;
        padding-inline: 1.25rem;
        border-radius: 4rem;
        direction: rtl;
      }

      .login__input,
      .login__button {
        border: none;
        outline: none;
      }

      .login__input {
        width: 100%;
        background: none;
        color: var(--white-color);
        padding-block: 1rem;
      }

      .login__input::placeholder {
        color: var(--white-color);
      }

      .login__box i {
        font-size: 1.25rem;
      }

      .login__check,
      .login__check-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .login__check {
        margin-bottom: 1rem;
        font-size: var(--small-font-size);
      }

      .login__check-box {
        column-gap: 0.5rem;
      }

      .login__check-input {
        width: 1rem;
        height: 1rem;
        accent-color: var(--white-color);
      }

      .login__forgot {
        color: var(--white-color);
      }

      .login__forgot:hover {
        text-decoration: underline;
      }

      .login__button {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        background-color: #A6CF98;
        border-radius: 4rem;
        color: var(--black-color);
        font-weight: 500;
        cursor: pointer;
      }

      .login__register {
        font-size: var(--small-font-size);
        text-align: center;
      }

      .login__register a {
        color: var(--white-color);
        font-weight: 500;
      }

      .login__register a:hover {
        text-decoration: underline;
      }
      select{
        background:transparent;
        height: 50px;
        border: none;
        font-size:1rem;
        color:black;
        font-family: 'Cairo', sans-serif;
      }
      select:focus{
        outline:none;
      }
      form a {
        text-decoration:none;
        color:black;
        padding:8px;
        background-color:#FF8080;
        border-radius:50px;
        font-weight: bold;
         border: 1.5px solid 
        
      }
      .location-btn{
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 1rem;
        background: #EEEEEE;
        border-radius: 4rem;
        font-weight: 500;
        cursor: pointer;
      }
      .location-btn:focus  {
        background:#A6CF98;
      }
      /*=============== BREAKPOINTS ===============*/
      /* For medium devices */
      @media screen and (min-width: 576px) {
        .login {
          justify-content: center;
        }
        .login__form {
          width: 420px;
          padding-inline: 2.5rem;
        }
        .login__title {
          margin-bottom: 2rem;
        }
      }


.label{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.login__box__text {
  height: 150px;
  border-radius: 3rem;
}
.login__box__text textarea {
  border: none;
  height: 130px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  width: 100%;
  resize: none;
}
.login__box__text textarea:focus {
  outline: none;
}