@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

.login-body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(220, 157, 167);
}

.logo{
    display: block;
    margin: auto;
    width: 75%;
    
}

.wrapper{
    width: 420px;
    background: #fff;
    color: #fff;
    border-radius: 10px;
    padding: 80px 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.759);
}

.wrapper h1{
    font-size: 30px;
    text-align: center;
    color: #000;
    margin-top: 10px;
}

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

.input-box input{
    width: 100%;
    height: 100%;
    background: rgba(195, 195, 195, 0.531);
    border: none;
    outline: none;
    border: 2px solid rgb(255,255,255,.2);
    border-radius: 40px;
    font-size: 16px;
    color: #000;
    padding: 20px 45px 20px 50px;
}

.input-box input::placeholder{
    color: #000;

}

.input-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #000;
}

.wrapper .remember{
    font-size: 14.5px;
    margin: -15px 0 15px;
    text-align: center;
    color: #000;
}

.remember label input{
    color: #000;
    margin-right: 5px;
}

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

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(220, 157, 167);
}

.user-form{
    width: 420px;
    background: #fff;
    color: #fff;
    border-radius: 10px;
    padding: 80px 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.759);
}

.user-form form{
    display: table;
}
.user-form p{
    display: table-row;
}
.user-form label{
    display: table-cell;
    color: #000;
}

.user-form input{
    margin-top: 10px;
    display: table-cell;
}
.user-form select{
    margin-top: 10px;
}

.user-form .btn{

    width: 100%;
    height: 45px;
    background: #692121;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
}

.user-form h1{
    color: #000;
    text-align: center;
}