body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.login-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 4rem;
    border-radius: .5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    height: auto;
    width: 28%;
}

.login-main_top {
    position: absolute;
    display: flex;
    justify-content: center;
    padding: 0 3rem;
    align-items: center;
    top: 4rem;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: black;
    width: 90%;
    height: 8%;
    border-radius:  .5rem;
    color: white;
}

.forgot-remember a {
    text-decoration: underline;
}

.login-main_top h2 {
    text-align: center;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
}

.login-main i {
    font-size: 5rem;
    margin: 5rem 3rem 2rem 3rem;
    padding: 2rem;
    border: 1px solid black;
    border-radius: 50%;
}

.login-main h1 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 2rem;
    font-family: 'Oswald', sans-serif;
}

.login-main input[type="text"],[type="password"] {
    width: 70%;
    padding: .8rem 1rem;
    margin: 1rem;
    outline: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.135);
    border-radius: .5rem;
    font-family: 'Oswald', sans-serif;
    color: rgb(48, 48, 48);
    font-size: 1.6rem;
}

.login-main input:user-invalid {
    background-color: rgba(255, 0, 0, 0.13);
}

.login-main button {
    border: none;
    outline: none;
    background-color: black;
    width: 70%;
    height: 3.5rem;
    border-radius: .5rem;
    color: white;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
}

.forgot-remember {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.remember-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

form {
    text-align: center;
}


  .checkbox-wrapper-18 .round {
    position: relative;
  }

  .checkbox-wrapper-18 .round label {
    background-color: #c7c7c7;
    border: 1px solid #a2a2a2;
    border-radius: 50%;
    cursor: pointer;
    height: 15px;
    width: 15px;
    display: block;
  }

  .checkbox-wrapper-18 .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 4px;
    left: 3px;
    opacity: 0;
    position: absolute;
    top: 3.3px;
    transform: rotate(-45deg);
    width: 7px;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"] {
    visibility: hidden;
    display: none;
    opacity: 0;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label {
    background-color: #000000;
    border-color: #000000;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }

