.theme-card {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    background: rgba(5, 44, 95, 0.82);
    color: var(--white);
    box-shadow: var(--card-shadow);
}

.theme-card-light {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    background: var(--primary-card-light);
    color: var(--white);
}

.theme-title {
    margin: 0;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
}

.theme-subtitle {
    margin: 8px 0 0;
    color: var(--muted-text);
    font-size: 15px;
    line-height: 1.6;
}

.form-control,
.theme-input,
.theme-select,
.theme-textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--border-blue) !important;
    border-radius: 10px;
    outline: none;
    background-color: rgba(8, 45, 97, 0.92) !important;
    color: var(--white) !important;
    font-size: 15px;
    box-shadow: none !important;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.theme-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-control::placeholder,
.theme-input::placeholder,
.theme-textarea::placeholder {
    color: rgba(217, 230, 245, 0.65) !important;
    opacity: 1;
}

.form-control:focus,
.theme-input:focus,
.theme-select:focus,
.theme-textarea:focus {
    border-color: var(--primary-blue) !important;
    background-color: rgba(12, 57, 116, 0.98) !important;
    color: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(11, 108, 255, 0.14) !important;
}

.form-control:disabled,
.theme-input:disabled,
.theme-select:disabled,
.theme-textarea:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.theme-field {
    width: 100%;
    min-height: 52px;
    margin-bottom: 12px;
    padding: 0 14px;
    border: 1px solid var(--border-blue);
    border-radius: 11px;
    background: var(--primary-field);
    display: flex;
    align-items: center;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.theme-field:focus-within {
    border-color: var(--primary-blue);
    background: var(--primary-field-focus);
    box-shadow: 0 0 0 3px rgba(11, 108, 255, 0.13);
}

.theme-field-icon {
    width: 26px;
    min-width: 26px;
    margin-right: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-field-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.theme-field-icon i,
.theme-field-icon svg {
    color: var(--white);
    font-size: 21px;
}

.theme-field input,
.theme-field select,
.theme-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    box-shadow: none;
}

.theme-field textarea {
    min-height: 100px;
    padding-top: 14px;
    resize: vertical;
}

.theme-field input:focus,
.theme-field select:focus,
.theme-field textarea:focus {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.theme-field input::placeholder,
.theme-field textarea::placeholder {
    color: rgba(217, 230, 245, 0.65);
    opacity: 1;
}

.theme-password-toggle,
.auth-password-toggle {
    width: 30px;
    min-width: 30px;
    height: 38px;
    margin-left: 8px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.theme-password-toggle img,
.auth-password-toggle img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.theme-password-toggle i,
.theme-password-toggle svg {
    color: var(--white);
    font-size: 21px;
}

.theme-error,
.auth-error {
    margin: -5px 4px 11px;
    color: var(--danger);
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
}

.theme-primary-button,
.auth-primary-button {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    border: 0;
    border-radius: 9px;
    background: var(--blue-gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: var(--button-shadow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.theme-primary-button:hover,
.theme-primary-button:focus,
.auth-primary-button:hover,
.auth-primary-button:focus {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 11px 24px rgba(11, 108, 255, 0.31);
}

.theme-primary-button:active,
.auth-primary-button:active {
    transform: translateY(0);
}

.theme-primary-button:disabled,
.auth-primary-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.theme-orange-button {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    border: 0;
    border-radius: 9px;
    background: var(--orange-gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.theme-outline-button,
.auth-outline-button {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 122, 22, 0.8);
    border-radius: 9px;
    background: transparent;
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.theme-outline-button:hover,
.theme-outline-button:focus,
.auth-outline-button:hover,
.auth-outline-button:focus {
    border-color: var(--accent-orange);
    background: var(--accent-orange);
    color: var(--white);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    border-color: transparent !important;
}

.button-group {
    display: flex;
    width: 100%;
}

.button-group button {
    flex: 1;
    min-height: 46px;
    padding: 8px 12px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    background: var(--blue-gradient);
    color: var(--white);
}

.button-group button:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.button-group button:last-child {
    border-right: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.icons {
    padding: 2px 19px;
    border: 1px solid var(--border-blue);
    border-radius: 30px;
    background-color: var(--primary-card);
}

.icons img {
    width: 45px;
    height: 45px;
}

.icons2 {
    padding: 2px;
    background-color: var(--primary-card);
}

.icons2 img {
    width: 50px;
    height: 50px;
}

.facebook {
    border: 2px solid var(--primary-blue) !important;
}

.youtube {
    border: 2px solid var(--accent-orange) !important;
}

.star {
    border: 2px solid var(--primary-blue-light) !important;
}

.taka {
    border: 2px solid var(--accent-orange) !important;
}
