body {
    background: #f8fffd;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pwd {
    background: #2f2927;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
    position: relative;
}

.pwd input {
    background: transparent;
    border: none;
    font-size: 1.2em;
    color: #bf1c6e;
}

.pwd input:focus {
    outline: none;
}

.pwd i {
    font-size: 1.4em;
    padding: 1em;
    color: #dbdbdb;
    transition: 0.3s;
}

.pwd .fa-eye,
.pwd .fa-eye-slash {
    cursor: pointer;
    color: #bf1c6e;
    width: 1.2em;
}

.pwd .overlay {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    background: #dbdbdb;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    z-index: 0;
    transition: 0.5s ease-in-out;
}

.pwd .overlay-cover {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    right: 0;
}

.pwd>div:nth-child(2) {
    position: relative;
}