*{
    margin: 0;
    padding: 0;
    text-emphasis-color: #212529;
    box-sizing: border-box;
    font-family: "poppins" , sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}
.alert.alert-error {
    margin: 10px auto;
    width: 100%;
    text-align: center;
    color: red;
}
.wrapper{
    width: 420px;
    background: transparent;
    border: 2px solid rgba(red, green, blue, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #000000;
    border-radius: 10px;
    padding: 30px 40px;
}

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

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

.box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: #000000;
    padding: 20px 45px 20px 20px;
}

.box input::placeholder{
    color: #000000;
}

.box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;

}

.wrapper .remember-me {
    display: flex;
    justify-content: space-between;
    font-size: 14.6px;
    margin: -15px 0 15px ;
}


.remember-me label input {
    accent-color: #000000;
    margin-right: 3px;
}

.remember-me a {
    color: #000000;
    text-decoration: none;
}

.remember-me a:hover {
    text-decoration: underline;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background:  #0d6efd;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0,0,0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;

}

.wrapper .reg {
    font-size: 14.6px;
    text-align: center;
    margin-top: 20px;
}

.reg p a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.reg p a:hover {
    text-decoration: underline;
}
