.adw-register-page {
    min-height: 100vh;
    padding: 38px 20px 60px;
    background:
        radial-gradient(
            circle at top right,
            rgba(10, 143, 61, 0.12),
            transparent 30%
        ),
        #f4fbf6;
}

.adw-register-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.adw-register-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 20px;
}

.adw-register-brand {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid #e8eee9;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(31, 79, 18, 0.06);
}

.adw-register-brand img {
    width: auto;
    max-width: 140px;
    height: 38px;
}

.adw-register-login {
    color: #087934;
    font-weight: 750;
}

.adw-register-hero {
    position: relative;
    display: grid;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 34px clamp(24px, 5vw, 52px);
    border-radius: 24px;
    background: linear-gradient(125deg, #1f4f12, #0a8f3d 72%, #b89400 140%);
    color: #fff;
    grid-template-columns: 1fr auto;
    gap: 30px;
}

.adw-register-hero::after {
    position: absolute;
    top: -90px;
    right: -50px;
    width: 280px;
    height: 280px;
    border: 55px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.adw-register-hero__content {
    position: relative;
    z-index: 1;
}

.adw-register-hero__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #ffe892;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.adw-register-hero h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
}

.adw-register-hero p {
    max-width: 690px;
    margin: 0;
    color: #d6e9d1;
}

.adw-register-hero__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
}

.adw-register-hero__icon svg {
    width: 32px;
    height: 32px;
}

.adw-register-form {
    display: grid;
    gap: 20px;
}

.adw-form-section {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid #e8eee9;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 5px 22px rgba(31, 79, 18, 0.06);
}

.adw-form-section__header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 13px;
}

.adw-form-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 13px;
    background: #e8f8ee;
    color: #087934;
}

.adw-form-section__icon svg,
.adw-form-section__icon i {
    width: 20px;
    height: 20px;
}

.adw-form-section h2 {
    margin: 0;
    color: #1f4f12;
    font-size: 18px;
    font-weight: 800;
}

.adw-form-section__header p {
    margin: 2px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.adw-form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adw-form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adw-register-field label {
    display: block;
    margin-bottom: 7px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.adw-register-control {
    position: relative;
}

.adw-register-control > svg,
.adw-register-control > i {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 15px;
    width: 18px;
    height: 18px;
    color: #6b7280;
    transform: translateY(-50%);
    pointer-events: none;
}
.adw-register-control > i {
    display: grid;
    place-items: center;
}

.adw-register-control > .adw-input-currency {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 7px;
    background: #e8f8ee;
    color: #087934;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.adw-register-field .form-control,
.adw-register-field .form-select {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #dfe6e1;
    border-radius: 12px;
    background-color: #fcfdfc;
    color: #1b1b1b;
    outline: none;
    box-shadow: none;
}

.adw-register-control > .form-control,
.adw-register-control > .form-select {
    padding-left: 44px;
}

.adw-register-control > .form-select {
    padding-right: 38px;
}

.adw-register-field .form-control:focus,
.adw-register-field .form-select:focus {
    border-color: #0a8f3d;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(10, 143, 61, 0.1);
}

.adw-register-field .iti {
    width: 100%;
}

.adw-register-control--phone > svg,
.adw-register-control--phone > i {
    right: 14px;
    left: auto;
}

.adw-register-control--phone .iti input {
    padding-right: 44px;
    padding-left: 52px;
}

.adw-register-password {
    position: relative;
}

.adw-register-password .form-control {
    padding-right: 48px;
    padding-left: 44px;
}

.adw-register-password > svg,
.adw-register-password > i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    width: 18px;
    height: 18px;
    color: #6b7280;
    transform: translateY(-50%);
    pointer-events: none;
}
.adw-register-password > i {
    display: grid;
    place-items: center;
}

.adw-register-password button {
    position: absolute;
    top: 50%;
    right: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transform: translateY(-50%);
}

.adw-field-status {
    display: block;
    min-height: 18px;
    margin-top: 5px;
    color: #6b7280;
    font-size: 14px;
}

.adw-field-status.is-valid {
    color: #087934;
}
.adw-field-status.is-invalid {
    color: #dc2626;
}

.adw-register-terms {
    display: flex;
    align-items: flex-start;
    margin-top: 23px;
    color: #4b5563;
    gap: 10px;
}

.adw-register-terms input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0a8f3d;
}

.adw-register-terms a {
    color: #087934;
    font-weight: 700;
}

.adw-register-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(22px, 4vw, 34px);
    border: 1px solid #e8eee9;
    border-radius: 20px;
    background: #fff;
    gap: 20px;
}

.adw-register-actions__note {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.adw-register-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 50px;
    padding: 12px 22px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a8f3d, #1f4f12);
    box-shadow: 0 10px 22px rgba(10, 143, 61, 0.2);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.adw-register-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.adw-register-submit:focus,
.adw-register-submit:focus-visible {
    background: linear-gradient(135deg, #b89400, #7a6200);
    color: #fff;
    outline: 3px solid rgba(214, 178, 0, 0.3);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(255, 232, 146, 0.24);
}

.adw-copy-button:focus,
.adw-copy-button:focus-visible {
    border-color: #b89400;
    background: #fff4c6;
    color: #7a6200;
    outline: 3px solid rgba(214, 178, 0, 0.24);
}

.adw-registration-success {
    width: min(780px, 100%);
    margin: 0 auto;
}

.adw-success-card {
    overflow: hidden;
    border: 1px solid #e8eee9;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(31, 79, 18, 0.12);
}

.adw-success-card__header {
    padding: 38px 32px;
    background: linear-gradient(130deg, #1f4f12, #0a8f3d);
    color: #fff;
    text-align: center;
}

.adw-success-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 15px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
}

.adw-success-card__icon svg {
    width: 34px;
    height: 34px;
}

.adw-success-card__header h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.adw-success-card__header p {
    margin: 0;
    color: #d6e9d1;
}

.adw-payment-details {
    padding: 25px 30px 32px;
}

.adw-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #edf1ee;
    gap: 20px;
}

.adw-payment-row:last-child {
    border-bottom: 0;
}

.adw-payment-label {
    display: block;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.adw-payment-value {
    display: block;
    margin-top: 3px;
    color: #1f4f12;
    font-size: 16px;
    font-weight: 800;
}

.adw-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    flex: 0 0 42px;
    border: 1px solid #c7eed7;
    border-radius: 12px;
    background: #e8f8ee;
    color: #087934;
    cursor: pointer;
}

.adw-copy-button svg {
    width: 18px;
    height: 18px;
}

.adw-copy-feedback {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.adw-success-card__actions {
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid #edf1ee;
}

.adw-success-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 22px;
    border: 1px solid #0a8f3d;
    border-radius: 12px;
    background: #0a8f3d;
    color: #fff !important;
    font-weight: 800;
    gap: 9px;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.adw-success-login-button:hover {
    border-color: #1f4f12;
    background: #1f4f12;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 79, 18, 0.2);
}

.adw-success-login-button:focus,
.adw-success-login-button:focus-visible {
    border-color: #b89400;
    background: #7a6200;
    color: #fff !important;
    outline: 3px solid rgba(214, 178, 0, 0.3);
    outline-offset: 3px;
}

@media (max-width: 899.98px) {
    .adw-form-grid,
    .adw-form-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 599.98px) {
    .adw-register-page {
        padding: 20px 14px 40px;
    }

    .adw-register-header {
        margin-bottom: 18px;
    }

    .adw-register-brand img {
        max-width: 105px;
        height: 30px;
    }

    .adw-register-hero {
        padding: 27px 22px;
        grid-template-columns: 1fr;
    }

    .adw-register-hero__icon {
        display: none;
    }

    .adw-form-grid,
    .adw-form-grid--two {
        grid-template-columns: 1fr;
    }

    .adw-register-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .adw-register-submit {
        width: 100%;
    }

    .adw-payment-row {
        align-items: flex-start;
    }

    .adw-payment-value {
        font-size: 14px;
        overflow-wrap: anywhere;
    }
}
