* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #A4193D;
    background: linear-gradient(90deg,rgba(164, 25, 61, 1) 0%, rgba(255, 223, 185, 1) 77%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.wrapper {
    background-color: transparent;    
    width: 420px;    
    border: 1px solid rgb(237, 229, 225);
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1 {
    text-align: center;
    font-size: 36px;
    color: white;
    margin-top: 30px;
}

.wrapper .input-wrapper {
    position: relative;
    height: 50px;
    margin: 30px 0;
}

.input-wrapper input {
    min-width: 100%;
    height: 100%;
    outline: none;
    background-color: transparent;
    padding: 20px 40px 20px 20px;
    color: white;
    font-size: 16px;

    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
}

.input-wrapper input::placeholder {
    color: white;
}

.input-wrapper .input-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    transform: translateY(-50%);

    fill: #fff;
}

.input-wrapper .input-icon.lock {
    right: 17px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}
.remember-forgot label {
    cursor: pointer;
}

.box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-color: #fff;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    margin-right: 3px;
    cursor: pointer;
    width: 16px;
    height: 16px;

    fill: transparent;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), 
    border 250ms cubic-bezier(0.4, 0, 0.2, 1), 
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}


.visually-hidden:checked + .rm-label .box {
    background-color: #A4193D;
    border: none;
    fill: #F4F4FD;
}

.remember-forgot a {
    text-decoration: none;
    color: #fff;

    transition: text-decoration 350ms ease;
}

.remember-forgot a:hover, 
.remember-forgot a:focus {
    text-decoration: underline;
}

.login-btn {
    cursor: pointer;
    width: 100%;
    height: 48px;
    background-color: #fff;
    color: black;
    border: none;
    border-radius: 40px;
    outline: none;


    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

    transition: background-color 250ms ease-in-out,
    color 300ms ease-in-out;
}

.login-btn:hover,
.login-btn:focus {
    background-color: black;
    color: white;
}

.register-link {
    text-align: center;
    font-size: 14.5px;
    margin: 20px 0 15px;

}

.register-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;

    transition: text-decoration 1000ms ease-out;
}

.register-link a:hover,
.register-link a:focus {
    text-decoration: underline;
}


