@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.card-deck{
    margin: 0 auto;
    max-width: 600px;
    padding: 0 25px;
}
.password-toggle {
    position: relative;
}

.password-toggle .toggle {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 100%;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent;
    background-size: 20px auto;
    background-image: url(../img/visibility.png);
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0;
}

.password-toggle .toggle:not(:focus){
    opacity: 0.6;
}

.password-toggle .toggle span {
    visibility: hidden;
}

.password-toggle .toggle.visible {
    background-image: url(../img/visibility_off.png);
    background-color: transparent;
    background-size: 20px auto;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
}

.password-toggle > input {
    padding-right: 40px !important;
}

.input-wrapper[data-icon='user']::before{ background-image: url(../img/icons/user.png); }
.input-wrapper[data-icon='lock']::before{ background-image: url(../img/icons/lock.png); }
.input-wrapper[data-icon='email']::before{ background-image: url(../img/icons/email.png); }

.bottom-copy {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}