.am-auth-form h1 { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 4px; }
.am-auth-form .sub { text-align: center; font-size: 13px; color: var(--cool-grey); margin-bottom: 28px; }

.am-auth-form {
    max-width: 300px;
}

/* Error */
.am-auth-form .err {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--border-radius-xs);
    font-size: 13px;
    margin-bottom: 20px;
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.2);
    color: #fca5a5;
}
.am-auth-form .err.show { display: flex; }

.am-auth-form .am-errors {
    font-size: 13px;
    margin-bottom: 20px;
}

.am-auth-form .am-errors li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--border-radius-xs);
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.2);
    color: #fca5a5;
}

.am-auth-form .am-errors li::before {
    content: "";
    display: inline-block;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    background-color: currentColor;
    -webkit-mask: url("../img/i.svg") center / contain no-repeat;
    mask: url("../img/i.svg") center / contain no-repeat;
}

.am-auth-form .am-info {
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--border-radius-xs);
    border: 1px solid var(--emerald-green);
    background: rgba(39, 174, 96, 0.2);
    color: var(--emerald-green);
}

.am-auth-form .am-info::before {
    content: "";
    display: inline-block;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    background-color: currentColor;
    -webkit-mask: url("../img/i.svg") center / contain no-repeat;
    mask: url("../img/i.svg") center / contain no-repeat;
}

.am-auth-form .am-info span {
    font-size: 13px!important;
}


/* Form */
.am-auth-form .fg { margin-bottom: 20px; }
.am-auth-form .fl { display: block; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--cool-grey); margin-bottom: 8px; }
.am-auth-form .iw { position: relative; display: flex; align-items: center; }
.am-auth-form .ii { position: absolute; left: 14px; color: var(--cool-grey); pointer-events: none; transition: color .2s; }
.am-auth-form .fi {
    width: 100%; padding: 13px 14px 13px 44px;
    background: rgba(26,31,46,.6); border: 1px solid rgba(176,184,200,.15);
    border-radius: var(--border-radius-xs); color: var(--pure-white); font-size: 14px; outline: none; transition: all .3s;
}
.am-auth-form .fi::placeholder { color: rgba(176,184,200,.4); }
.am-auth-form .fi:focus { border-color: var(--classic-gold); box-shadow: 0 0 0 3px rgba(212,175,55,.08); }
.am-auth-form .fi:focus ~ .ii { color: var(--classic-gold); }
.am-auth-form .ptog { position: absolute; right: 12px; display: flex; align-items: center; padding: 4px; color: var(--cool-grey); transition: color .2s; }
.am-auth-form .ptog:hover { color: var(--pure-white); }

/* Options */
.am-auth-form .opts { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.am-auth-form .ckw { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--cool-grey); }
.am-auth-form .ckw input { display: none; }
.am-auth-form .ckb {
    width: 18px; height: 18px; border: 1.5px solid rgba(176,184,200,.3); border-radius: 5px;
    display: flex; align-items: center; justify-content: center; transition: all .2s; flex-shrink: 0;
}
.am-auth-form .ckb svg { opacity: 0; transition: opacity .2s; }
.am-auth-form .ckw input:checked + .ckb { background: var(--classic-gold); border-color: var(--classic-gold); }
.am-auth-form .ckw input:checked + .ckb svg { opacity: 1; }
.am-auth-form .flink { font-size: 13px; color: var(--classic-gold); transition: color .2s;}
.am-auth-form .flink:hover { color: var(--light-gold); }

/* Button */
.am-auth-form .btnl {
    width: 100%; padding: 14px 24px;
    background: linear-gradient(135deg, var(--classic-gold), var(--light-gold));
    color: var(--deep-navy); font-size: 14px; font-weight: 700; letter-spacing: .5px;
    border-radius: var(--border-radius-sm); transition: all .3s; position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(212,175,55,.3);
}
.am-auth-form .btnl span { display: flex; align-items: center; justify-content: center; gap: 8px; }
.am-auth-form .btnl:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,.4); }