@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Schoolbell&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #F5F5F5;
    font-size: 21px;
    padding: 0 25px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 625px;
    height: auto;
    background: #fff;
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    padding: 35px 115px;
}

.dis-none {
    display: none;
  }

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-weight: 700;
    font-size: 61px;
    text-align: center;
    margin-bottom: 24px;
}

hr {
    width: 150px;
    height: 3px;
    background: #29ABE2;
    border: none;
    margin-bottom: 25px;
}

.input-line {
    width: 100%;
    height: 50px;
    outline: none;
    padding: 15px 20px;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    font-size: 21px;
    background: #fff;
    margin-bottom: 20px;
    flex-direction: row;
    display: flex;
  }
  
  .icon {
      font-size: 21px;
      transform: translateY(-50%);
      color: #A8A8A8;
      margin-top: 4px;
  }
  
  #pass-eye {
    cursor: pointer;
  }

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 90%;
    height: 24px;
    outline: none;
    border: 0px solid #D1D1D1;
    font-size: 21px;
    background: #fff;
}


#message-box {
    position: relative;
    width: 100%;
    text-align: center;
    line-height: 30px;
    background: #ffe1e1;
    color: rgb(200, 10, 10);
    border-radius: 5px;
    font-size: 14px;
  }


.btn-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    height: 50px;
    margin-top: 30px;
}

#sign-up {
    background: #2A3647;
    color: #fff;
    border: none;
    width: 145px;
    height: 50px;
    font-weight: 700;
    font-size: 21px;
    border-radius: 8px;
    cursor: pointer;
}

#sign-up:hover {
    background-color: #29ABE2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }


#logo {
    position: absolute;
    top: 35px;
    left: 80px;
    width: 100px;
    z-index: 1;
}

.arrow-back {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.arrow-back a {
    font-size: 35px;
    color: #29ABE2;
}

.success {
    padding: 25px;
    text-align: center;
    line-height: 30px;
}

/****** MEDIA **************/

@media (max-width: 1080px) {
    .container {
        width: 520px;
        padding: 35px 70px;
    }

    #logo {
        top: 25px;
        left: 50px;
        width: 80px;
    }
}

@media (max-width: 840px) {
    #logo {
        top: 25px;
        left: 50px;
        width: 60px;
    }
}

@media (max-width: 620px) {
    .container {
        width: 100%;
        padding: 22px 38px 17px 37px;
        margin-top: 41px;
    }

    .arrow-back {
        top: 30px;
        left: 30px;
    }
    
    .arrow-back a {
        font-size: 35px;
        color: #29ABE2;
    }

    h1 {
        font-size: 52px;
    }

    #logo {
        top: 15px;
        left: 25px;
        width: 45px;
    }
}



@media (max-height: 740px) {
    .container {
      margin-top: -51px;
    }
  }
  
  @media (max-height: 540px) {
  
    body{
      font-size: 12px;
    }
  }
  
  @media (max-height: 420px) {
    h1{
      font-size: 45px;
      margin-bottom: -13px;
    }
  *  .container {
      width: 417px;
      padding: 26px 30px;
      height: 80vh;
      margin-top: 23px;
  }

 * input[type="text"], input[type="email"], input[type="password"] {
    width: 90%;
    height: 15px;
    font-size: 18px;
  }

  * .btn-line {
margin-top: -2px;
  }

  * #sign-up{
    height: 39px;
  }

  * .icon {
    font-size: 20px;
    margin-top: -3px!important;
}

hr{
 height: 0px;
}


  body{
    font-size: 9px;
  }
  
  .input-line {
    position: relative;
    width: 79%;
    height: 39px;
    margin-bottom: 14px;
  }
  
  #log-in{
    font-size: 16px;
    height: 32px;
  }
  } 
  
  
  @media (max-height: 300px) {
  .container {
    width: 447px;
    padding: 3px 30px;
    margin-top: 0px;
    height: 98vh;
  }
  
  .signup-line {
    top: 13px;
    right: 54px;
  }
  }
  