

body {
    background-color: #f5f5f5;
}




#logo {
    width: 14%;
    height: 16%;
    padding-left: 3%;
    display: block;
    margin: auto;
    margin-top: -32px;
}


#logo_back {
    margin-top: 15px;
    padding-left: 10px;
    

}
#signin_div {

    margin: auto;
    width: 30%;
    text-align: start;
}
#signin_div h1{
    font-family: sans-serif;
}

#signin_div>input {
    width: 98%;
    padding: 10px;
    margin-top: 6%;
    font-size: 20px;
    background-color:  #f5f5f5;
    border-radius: 5px;
    border: 0.5px solid black;
}

#signin_div .checkbox {
    margin-top: 8%;
    height: 20px;
    width: 20px;

}

#term_conditions a {
    text-decoration: none;
    color: #347e8f;
}

#end_div {
    margin: auto;
    width: 30%;
    text-align: center;
    cursor:pointer;
}

#button {

    margin: auto;
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 49px;
    cursor:pointer;
    border: 0px solid #ebb6c4;
    background-color: #f9004d;
    margin-bottom: 4%;
    margin-top: 15px;
    border-radius: 15px;
}

#button >p {
    font-size: 20px;
    color: white;
    display:flex;
    font-weight: bolder;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor:pointer;
   

}

#end_div a {
    color: #347e8f;
    text-decoration: none;

}

#creataccaunt,
#creataccaunt a {
    margin-bottom: 25px;
}

#creataccaunt {
    margin-top: 20px;
}

#social_media {
    display: flex;
    border: 0px solid red;
    justify-content: center;
    gap: 7%;
    padding-bottom: 10px;
}

#social_media>img {
    width: 18px;
    height: 18px;
}

 /* Medium Screen */
 @media only screen and (min-width: 500px) and (max-width: 768px) {
    #signin_div{
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: repeat(2,auto);
      width: 95%;
    }
    #signin_div{
      grid-template-columns: repeat(2,1fr);
      grid-template-rows: repeat(3,auto);
      width: 95%;
    }
  }

  /* Small Screen */
  @media only screen and (min-width: 320px) and (max-width: 499px) {
    #signin_div{
      grid-template-columns: repeat(2,1fr);
      grid-template-rows: repeat(3,auto);
      width: 100%;
    }
}