

* {
    /* border: 1px solid red; */
    font-family: sans-serif;
}

main {
    background: #edf2ff;
    background-image: url(../homeasset/images/img/BG-sidebar.png);
    background-size: 100%;
    /*background-position: bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;*/
  }
  
  @media screen and (max-width: 500px) {
    main {
      background: #edf2ff;
      background-image: url(../homeasset/images/img/BG-sidebar.png);
      /* position: fixed; */
      background-size: 100%;
      /*background-position: top;
      background-attachment: fixed;*/
      background-repeat: no-repeat;
    }
  }

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    color: orange;
    /* background-color: rgb(247, 247, 247); */
}

.mainBody img {
    width: 250px;
}

.auth-heading {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.inputs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
}

label {
    font-size: .9rem;
    font-weight: 600;
    color: rgb(183, 180, 180);
}

form {
    border-radius: 10px;
    background-color: rgb(1, 0, 18);
}


.customInput, .form-control {
    width: 100%;
    color: white;
    text-align: right;
    background: transparent !important;
    height: 30px;
    padding: 5px 0 10px 0;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    font-size: 13px !important;
    border: none !important;
    resize: none;
    appearance: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    transition: 0.3s all ease-in-out;
}

.formInputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    align-items: stretch;
}

.login .las {
    color: orange;
    margin-top: -15px;
    font-size: 45px;
}

.genders label {
    font-weight: 600;
}

.login {
    color: white;
    margin-top: 20px;
    background:none;
    border: none;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

#forgotPassword {
    text-decoration: none;
    color: rgb(183, 180, 180);
}

#backToLogin{
    color: orange;
    margin: 15px 0 30px 0;
}

