* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', "Calibri", 'Trebuchet MS', sans-serif;

}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #66C7F4;
}

.password-box {
    width: 90%;
    max-width: 350px;
    background-color: white;
    height: 50px;
    padding:0 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

.password-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 24px;
    color: #555;
    border-radius: 10px;
    outline: none;
    border:none;
    transition: 0.2s;
}

.password-box img {
    width: 40px;
    padding: 0 5px;
    cursor: pointer;
    transition: 0.2s;
}