.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #4d5764;
    font-weight: 600;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #6e7885;
    font-size: 15px;
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    height: 46px;
    border: 1px solid #cdc2b0;
    border-radius: var(--radius);
    padding: 0 12px 0 40px;
    font-size: 14px;
    font-family: var(--font);
    background: #fff;
    color: #131720;
    transition: border-color var(--t), box-shadow var(--t);
}

.input-wrap input:focus {
    outline: none;
    border-color: var(--gold-dk);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .14);
}

.input-wrap.is-invalid input {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.err {
    margin-top: 6px;
    color: var(--danger);
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #485260;
}

.remember input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold-dk);
}

.link {
    font-size: 13px;
    color: var(--gold-dk);
    font-weight: 600;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.btn-signin {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 100%);
    color: var(--void);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform var(--t), box-shadow var(--t);
}

.btn-signin:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(155, 122, 46, .34);
}

.btn-signin:active {
    transform: translateY(0);
}

.notice {
    margin-bottom: 18px;
    border-radius: var(--radius);
    padding: 11px 12px;
    font-size: 12px;
    border: 1px solid;
}

.notice.success {
    border-color: rgba(45, 159, 107, .25);
    background: rgba(45, 159, 107, .12);
    color: #1f6e4b;
}

.notice.info {
    border-color: rgba(58, 123, 213, .25);
    background: rgba(58, 123, 213, .12);
    color: #1f4b86;
}

.foot-note {
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
    color: #6b7480;
}

.auth-credit {
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
    color: #6b7480;
    margin-top: 10px;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.auth-credit a {
    color: var(--gold-dk);
    font-weight: 600;
    text-decoration: none;
}

.auth-credit a:hover {
    text-decoration: underline;
}
