.register-wrapper {
    max-width: 100%;
    margin: 0;
}

.register-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 0;
    background: linear-gradient(135deg, rgba(30, 24, 18, 0.5), rgba(20, 16, 12, 0.5));
    border: 1px solid #4a3f2f;
    border-radius: 8px;
    overflow: hidden;
}

.register-side {
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(30, 24, 18, 0.8), rgba(20, 16, 12, 0.8));
    border-right: 1px solid #4a3f2f;
}

.register-side h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.register-side p {
    color: #b8a589;
    font-size: 16px;
    margin-bottom: 20px;
}

.benefits-compact {
    list-style: none;
}

.benefit-compact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(74, 63, 47, 0.3);
}

.benefit-compact:last-child {
    border-bottom: none;
}

.benefit-icon-small {
    width: 26px;
    height: 26px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.benefit-text-small {
    flex: 1;
}

.benefit-title-small {
    font-weight: 600;
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 2px;
}

.benefit-desc-small {
    font-size: 16px;
    color: #8b7355;
    line-height: 1.3;
}

.register-form-area {
    padding: 25px 20px;
}

.form-header-compact {
    margin-bottom: 18px;
}

.form-header-compact h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 4px;
}

.form-header-compact p {
    color: #b8a589;
    font-size: 15px;
}

.alert {
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 5px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.alert-error {
    background: rgba(146, 38, 34, 0.678);
    border: 1px solid rgba(220, 90, 85, 0.4);
    color: #e89693;
}

.alert-success {
    background: rgba(106, 191, 105, 0.15);
    font-size: 18px;
    border: 1px solid rgba(106, 191, 105, 0.4);
    color: #8cd68b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group-compact {
    margin-bottom: 12px;
}

.form-group-compact.full {
    grid-column: 1 / -1;
}

.form-label-small {
    display: block;
    margin-bottom: 4px;
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.input-wrapper-small {
    position: relative;
}

.input-icon-small {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b7355;
    font-size: 12px;
}

.form-control-small {
    width: 100%;
    padding: 8px 9px 8px 32px;
    background: rgba(30, 24, 18, 0.5);
    border: 1px solid #4a3f2f;
    height: 40px;
    border-radius: 5px;
    color: #e8dcc4;
    font-size: 11px;
    transition: all 0.3s;
}

.form-control-small:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(35, 28, 21, 0.6);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.form-control-small::placeholder {
    color: #b8a589;
    font-size: 13px;
}

.form-control-small.error {
    border-color: #dc5a55;
}

.form-control-small.success {
    border-color: #6abf69;
}

.form-help-small {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: #d4d4d4;
}

.password-strength-small {
    margin-top: 4px;
    height: 2px;
    background: rgba(74, 63, 47, 0.5);
    border-radius: 1px;
}

.password-strength-bar-small {
    height: 100%;
    width: 0;
    transition: all 0.3s;
    border-radius: 1px;
}

.password-strength-bar-small.weak {
    width: 33%;
    background: #dc5a55;
}

.password-strength-bar-small.medium {
    width: 66%;
    background: #f0ad4e;
}

.password-strength-bar-small.strong {
    width: 100%;
    background: #6abf69;
}

.password-info-small {
    display: flex;
    gap: 5px;
    margin-top: 4px;
    font-size: 13px;
    color: #cfcfcf;
    flex-wrap: wrap;
}

.password-info-small span {
    display: flex;
    align-items: center;
    gap: 2px;
}

.password-info-small span.met {
    color: #6abf69;
}

.password-match-small {
    margin-top: 3px;
    font-size: 8px;
}

.password-match-small.success {
    color: #6abf69;
}

.password-match-small.error {
    color: #e89693;
}

.terms-wrapper-small {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 12px 0 15px;
    font-size: 13px;
    color: #b8a589;
    line-height: 1.3;
}

.terms-wrapper-small input[type="checkbox"] {
    margin-top: 2px;
    width: 12px;
    height: 12px;
    cursor: pointer;
    accent-color: #d4af37;
    flex-shrink: 0;
}

.terms-wrapper-small a {
    color: #d4af37;
    text-decoration: none;
}

.terms-wrapper-small a:hover {
    color: #ffd700;
}

.btn-register-small {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #3d2f1f, #2a1f12);
    border: 2px solid #5d4a1f;
    border-radius: 5px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register-small:hover {
    background: linear-gradient(135deg, #5d4a1f, #3d2f1f);
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-register-small:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.divider-small {
    display: flex;
    align-items: center;
    margin: 12px 0;
    color: #6b5d4f;
    font-size: 9px;
}

.divider-small::before,
.divider-small::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a3f2f, transparent);
}

.divider-small span {
    padding: 0 8px;
}

.login-link-small {
    text-align: center;
    color: #b8a589;
    font-size: 20px;
}

.login-link-small a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.login-link-small a:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .register-grid {
        grid-template-columns: 1fr;
    }

    .register-side {
        order: 1;
        border-right: none;
        border-bottom: 1px solid #4a3f2f;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}