* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}

body {
    background-color: #f2f4ff;
}

.container {
    width: 410px;
    height: 350px;
    background-color: #fff;
    margin: 150px auto;
    border-radius: 11px;
    padding: 40px 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.top-header h3 {
    text-align: center;
    color: #495d76;
}

.top-header p {
    color: #838486;
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}

.user input,
.pass input {
    width: 100%;
    height: 35px;
    border: none;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    outline: none;
    padding: 0 40px;
}

 ::placeholder {
    color: #9ca5b4;
    font-size: 12px;
}

.user i,
.pass i {
    position: relative;
    top: 31px;
    right: -10px;
    color: #3981ed;
}

.btn {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn button {
    width: 100%;
    border: none;
    height: 35px;
    background-color: #277ffd;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

p.last {
    text-align: center;
    position: relative;
    bottom: 120px;
    font-size: 12px;
}