.tecepp-loader {
    display: flex;
    align-items: center;
    gap: 0.65em;
    padding: 1em 1.25em;
    margin: 0.75em 0;
    color: #fff;
    font-size: 0.95em;
    background: #800020;
    border: 1px solid #6b001b;
    border-radius: 6px;
}

.tecepp-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top-color: #4dabf7;
    border-radius: 50%;
    animation: tecepp-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes tecepp-spin {
    to { transform: rotate(360deg); }
}

.tecepp-pw-inline {
    padding: 1.1em 1.25em;
    margin: 0.75em 0;
    margin-bottom: 1.25em;
    background: transparent;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
}

.tecepp-pw-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75em;
    margin-bottom: 0.5em;
}

.tecepp-pw-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.tecepp-pw-price {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.tecepp-pw-notice {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 0.6em;
}

.tecepp-pw-field {
    display: flex;
    gap: 0.5em;
    align-items: center;
    margin-bottom: 5px !important;
}

.tecepp-pw-input {
    flex: 0 1 55%;
    min-width: 0;
    padding: 0.55em 0.85em;
    font-size: 0.95em;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tecepp-pw-input:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.tecepp-pw-btn {
    padding-top: calc(0.65em + 2px) !important;
    padding-bottom: calc(0.65em + 2px) !important;
    padding-left: 0.85em;
    padding-right: 0.85em;
    font-size: 0.95em;
    font-weight: 600;
    color: #fff !important;
    background: #800020 !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.tecepp-pw-btn:hover {
    background: #5c0017 !important;
}

.tecepp-pw-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.tecepp-pw-msg {
    font-size: 0.85em;
    color: #b32d2e;
    margin-top: 0.4em;
}

@media (max-width: 480px) {
    .tecepp-pw-field {
        flex-direction: column;
    }
    .tecepp-pw-btn {
        width: 100%;
    }
}
