* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-blue);
    background-color: #fff;
}

.container {
    background-image: url("/assets/public/title-soft-small.jpg");
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.wrapper {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .15);
    padding: 55px;
}

.input {
    font-size: 16px;
    color: var(--color-blue);
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 62px;
    background: 0 0;
    padding: 0 20px 0 23px;
}

.login-form {
    width: 100%;
}

.login-title {
    display: block;
    color: var(--color-blue);
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 37px;
}

/* color: #4b2354; */

.input-wrap {
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
}

.input-shadow {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 20px;
    transition: all .2s;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
}

.showpw {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
    filter: invert(41%) sepia(14%) saturate(1546%) hue-rotate(161deg) brightness(84%) contrast(82%);
    background: no-repeat scroll center center / 18px 18px transparent;
    background-image: url('eye-solid.svg');
    -webkit-tap-highlight-color: transparent;
}

.hidepw {
    background: no-repeat scroll center center / 20px 20px transparent;
    background-image: url('eye-slash-solid.svg');
}

.error-highlight {
    animation-name: pulse;
    animation-duration: .2s;
    animation-timing-function: linear;
    animation-iteration-count: 4;
    animation-direction: alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 30px 0 rgba(200, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 5px 30px 0 rgba(200, 0, 0, 0.6);
    }
}

button,
input {
    overflow: visible;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.password-input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
    border: none;
    width: calc(100% - 55px);
    margin: 10px 15px;
}

.login-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 160px;
    height: 50px;
    background-color: var(--color-blue);
    border-radius: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    transition: all .2s;
    box-shadow: 0 10px 30px 0 rgba(var(--color-blue), 0.5);
    outline: none !important;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.login-button:hover {
    background-color: #2f4f64;
}

.button-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}