@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html, body
{
    display: grid;
    height: 100%;
    place-items: center;
    text-align: center;
    background: #f2f2f2;
}
.container
{
    width: 420px;
    padding: 20px 30px;
    border-radius: 5px;
    border: 1px solid #7a7a7a0e;
    outline: none;
    background: transparent;
    outline: none;
    color: #333;
    box-shadow: -4px -4px 10px rgba(255,255,255,1),
                inset 4px 4px 10px rgba(0,0,0,0.07),
                inset -4px -4px 10px rgba(255,255,255,1),
                4px 4px 10px rgba(0,0,0,0.07);
}
.container header
{
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
}
.container form
{
    margin: 20px 5px 10px 5px;
    position: relative;
}
.container form .field
{
    height: 45px;
    width: 100%;
    display: flex;
    position: relative;
}
form .field input
{
    height: 100%;
    width: 100%;
    border: 1px solid lightgray;
    padding-left: 15px;
    outline: none;
    border-radius: 5px;
    font-size: 17px;
    transition: all 0.3s;
}
form .field input:focus
{
    border-color: #79797944;
    box-shadow: inset 0 0 3px #9e9e9e;
}
form .field .showBtn
{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: none;
    user-select: none;
}
form .indicator
{
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    display: none;
}
form .indicator span
{
    width: 100%;
    height: 100%;
    background: lightgrey;
    border-radius: 5px;
    position: relative;
}
form .indicator span:nth-child(2)
{
    margin: 0 3px;
}
form .indicator span:before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.indicator span.weak:before
{
    background-color: #ff4757;
}
.indicator span.medium:before
{
    background-color: orange;
}
.indicator span.strong:before
{
    background-color: #23ad5c;
}
form .text
{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -10px;
    display: none;
}
form .text.weak
{
    color: #ff4757;
}
form .text.medium
{
    color: orange;
}
form .text.strong
{
    color: #ff4757;
}