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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('./i/img.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    color: white;
    padding: 30px 40px;
    backdrop-filter: blur(100px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.container h1 {
    font-size: 36px;
    text-align: center;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20 px 20px;
    border-radius: 40px;
    border: 2px solid grey;
}
.input-box input::placeholder {
    color: grey;
}
.remember-forgot{
    display: flex;
    justify-content: space-between;
}
.remember-forgot label input{
    accent-color: red;
    margin-right: 5px;
}
.remember-forgot a{
    text-decoration: none;
    color: white;
}
.rember-forgot a:hover{
    text-decoration: underline;
}
.login{
    width: 100%;
    height: 50px;
    background-color: white;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.login:hover{
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    color: red;
    transition: 0.1s;
}
.register-link{
    font-size: 14px;
    text-align: center;
    margin: 20px 0 15px;
}
.register-link a{
    text-decoration: none;
    color: black;
    font-weight: 500;
}
.register-link:hover{
    text-decoration: underline ;
}
