.auth-page .grid-holder {
    overflow: visible;
}

.auth-shell {
    display: block;
    margin: 5px;
}

.auth-card {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.auth-card-panel {
    margin: 0;
    background: #fff;
    border: 1px solid #dfd4c8;
    box-shadow: 0 20px 40px rgba(43, 18, 7, 0.1);
}

.auth-card-head {
    padding: 30px 34px 20px;
    background: #f8f3ec;
    border-bottom: 1px solid #ebe0d4;
}

.auth-card-head h2 {
    margin: 0;
}

.auth-card-subtitle {
    margin: 14px 0 0;
    color: #7a6658;
    line-height: 1.8;
}

.auth-card-body {
    padding: 30px 34px 34px;
}

.auth-form {
    margin: 0;
}

.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    margin-bottom: 8px;
    color: #2b1207;
    font-size: 15px;
    font-weight: bold;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    background: #fffdfa;
    border: 1px solid #d7ccc0;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
    border-color: #c45c27;
    box-shadow: 0 0 0 3px rgba(196, 92, 39, 0.12);
    outline: none;
}

.auth-form .cf-turnstile {
    margin: 8px 0 22px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 24px;
    color: #5c4d43;
}

.auth-checkbox input {
    width: auto;
    height: auto;
    margin: 0;
}

.auth-checkbox label {
    margin: 0;
    font-weight: normal;
}

.auth-submit {
    width: 100%;
    height: 48px;
    border: 0;
    font-size: 16px;
    cursor: pointer;
}

.auth-support-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #ebe0d4;
    clear: both;
}

.auth-support-links a {
    display: block;
    float: none;
    padding: 12px 14px;
    background: #f8f3ec;
    border: 1px solid #ebe0d4;
    color: #9d4c21;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}

.auth-support-links a:hover {
    color: #2b1207;
    border-color: #d6c1ad;
    background: #f3e8dc;
}

.auth-errors,
.auth-card-body .alert {
    margin-bottom: 18px;
}

.auth-errors ul,
.auth-errors li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-errors li,
.auth-card-body .alert,
.auth-state-message {
    padding: 14px 16px;
    background: #fdf2e9;
    border: 1px solid #f0d7c4;
    color: #8e3f1d;
    line-height: 1.7;
}

.auth-state-message--success {
    background: #eef7ef;
    border-color: #cfe4d2;
    color: #2d6a39;
}

.auth-state-actions {
    margin-top: 22px;
}

.auth-state-actions .readmorebtn {
    text-decoration: none;
}

.auth-section+.auth-section {
    margin-top: 26px;
}

.auth-section-title {
    margin: 0 0 16px;
    color: #2b1207;
    font-size: 20px;
}

.auth-profile-list {
    display: grid;
    gap: 14px;
}

.auth-profile-item {
    padding: 16px 18px;
    background: #f8f3ec;
    border: 1px solid #ebe0d4;
}

.auth-profile-item span {
    display: block;
    margin-bottom: 6px;
    color: #7a6658;
}

.auth-profile-item strong {
    color: #2b1207;
}

@media only screen and (max-width: 640px) {

    .auth-card-head,
    .auth-card-body {
        padding-left: 22px;
        padding-right: 22px;
    }
}