/* Logo */
.logo {
    width: 65%;
}

/* Form  */
.input {
    background: rgba(187, 195, 221, 0.53);
    padding: 1.1rem;
    border: 0;
    width: 100%;
    font-family: var(--inter-font), sans-serif;
}

.input:focus {
    outline: 2px solid var(--blue-light-color);
}

.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus {
    background: rgba(187, 195, 221, 0.53);
    padding: 1.1rem;
    border: 0;
    width: 100%;
    font-family: var(--inter-font), sans-serif;
}

::placeholder {
    color: #777777;
}

.qr-submit-btn {
    width: 100%;
    padding: .9rem;
    background: var(--blue-light-color);
    color: #fff;
    font-family: var(--urbanist-font), sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all .15s;
}

.qr-submit-btn:hover {
    opacity: .8;
}

.login-label {
    font-family: var(--inter-font), sans-serif;
    font-weight: 500;
    color: #616161;
}

/* Errors & alerts */
.error {
    outline: 2px solid #ff4b4b;
}

.error-text {
    color: #ff4b4b;
    margin-top: 50px !important;
}

.fp-alert {
    background: rgba(172, 230, 166, 0.53);
    border: 2px solid rgba(146, 197, 141, 0.53);
    box-shadow: 0 0 10px rgba(172, 230, 166, 0.68);
    font-family: var(--dm-sans), sans-serif;
}

/* Checkbox */
[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue-light-color);
    vertical-align: middle;
    -webkit-appearance: none;
    border: 0;
    outline: 0;
    flex-grow: 0;
    background: #CBD0DF87 none;
    transition: background 200ms;
    cursor: pointer;
}

[type=checkbox]::before {
    content: "";
    color: transparent;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: 0;
    background-color: transparent;
    background-size: contain;
    box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked {
    background-color: currentcolor;
}

[type=checkbox]:checked::before {
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

[type=checkbox]:disabled {
    background-color: #CCD3D8;
    opacity: 0.84;
    cursor: not-allowed;
}

[type=checkbox]::-ms-check {
    content: "";
    color: transparent;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: 0;
    background-color: transparent;
    background-size: contain;
    box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

/* Forgot Password */
.fp-link {
    color: var(--blue-color);
    font-family: var(--inter-font), sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
}

.focus-header {
    font-family: var(--urbanist-font), sans-serif;
    font-weight: 600;
}