:root {
    --primary-color: #ff69b4;
    --primary-dark: #d44d98;
    --text-color: #333;
    --border-radius: 8px;
}

.wrap {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wrap h1 {
    color: #2271b1;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f1;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.form-table th {
    text-align: left;
    padding: 20px 10px 20px 0;
    width: 200px;
    line-height: 1.4;
    font-weight: 600;
    color: #1d2327;
}

.form-table td {
    padding: 15px 10px;
    line-height: 1.4;
    vertical-align: middle;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="password"],
.form-table select {
    width: 25em;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    line-height: 2;
    min-height: 30px;
}

.form-table input[type="text"]:focus,
.form-table input[type="email"]:focus,
.form-table input[type="password"]:focus,
.form-table select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: 2px solid transparent;
}

.description {
    font-size: 13px;
    font-style: italic;
    color: #646970;
    margin-top: 4px;
}

/* Parola gücü göstergesi */
#pass-strength-result {
    background-color: #f0f0f1;
    border: 1px solid #dcdcde;
    color: #1d2327;
    margin: 8px 0;
    padding: 8px 12px;
    text-align: center;
    width: 25em;
    box-sizing: border-box;
    opacity: 0;
    border-radius: 4px;
}

#pass-strength-result.short {
    background-color: #ffabaf;
    border-color: #e65054;
    opacity: 1;
}

#pass-strength-result.bad {
    background-color: #fbc5a9;
    border-color: #f78b53;
    opacity: 1;
}

#pass-strength-result.good {
    background-color: #ffe399;
    border-color: #ffc733;
    opacity: 1;
}

#pass-strength-result.strong {
    background-color: #b8e6bf;
    border-color: #68de7c;
    opacity: 1;
}

.wp-pwd {
    position: relative;
}

.wp-pwd [type="text"],
.wp-pwd [type="password"] {
    padding-right: 40px;
}

.wp-pwd .button.wp-hide-pw {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    box-shadow: none;
    height: 100%;
    padding: 0 12px;
    line-height: 2;
    color: #2271b1;
}

.wp-pwd .button.wp-hide-pw:hover {
    background: none;
    color: #135e96;
}

.wp-pwd .button.wp-hide-pw:focus {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
}

.notice {
    background: #fff;
    border-left: 4px solid #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin: 20px 0;
    padding: 12px;
    border-radius: 4px;
}

.notice-info {
    border-left-color: #72aee6;
    background-color: #f0f6fc;
}

.notice-success {
    border-left-color: #00a32a;
    background-color: #f0f6fc;
}

.notice-error {
    border-left-color: #d63638;
    background-color: #fcf0f1;
}

.button-primary {
    background: #2271b1;
    border: 1px solid #2271b1;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 2.15384615;
    margin: 0;
    min-height: 30px;
    padding: 0 24px;
    text-decoration: none;
    white-space: nowrap;
}

.button-primary:hover,
.button-primary:focus {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

.submit {
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid #f0f0f1;
}

#abonem-register-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#abonem-register-form .form-field {
    margin-bottom: 1.5rem;
}

#abonem-register-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-color);
}

#abonem-register-form label .description {
    color: var(--primary-color);
    text-transform: none;
    font-weight: normal;
}

#abonem-register-form input[type="text"],
#abonem-register-form input[type="email"],
#abonem-register-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

#abonem-register-form input[type="text"]:focus,
#abonem-register-form input[type="email"]:focus,
#abonem-register-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
    outline: none;
}

#abonem-register-form .notice {
    background: #fff8fa;
    border: 1px solid #ffe4f0;
    border-radius: 5px;
    padding: 12px 15px;
    margin: 10px 0;
    color: #333;
    border-left: 3px solid var(--primary-color);
}

#abonem-register-form .notice strong {
    color: var(--primary-color);
    font-weight: 600;
}

#abonem-register-form .notice p {
    margin: 0;
    font-size: 0.95em;
}

#abonem-register-form .notice.notice-info {
    border-left: 3px solid #ff69b4;
}

#abonem-register-form .notice.notice-success {
    background: #f0fff4;
    border-color: #e0f5e9;
    border-left: 3px solid #48bb78;
}

#abonem-register-form .notice.notice-error {
    background: #fff5f5;
    border-color: #fed7d7;
    border-left: 3px solid #f56565;
}

#abonem-register-form .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

#abonem-register-form .checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px dashed var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    transition: all 0.3s ease;
}

#abonem-register-form .checkbox-wrapper input[type="checkbox"]:hover {
    border-style: solid;
    background-color: rgba(255, 105, 180, 0.1);
}

#abonem-register-form .checkbox-wrapper input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-style: solid;
}

#abonem-register-form .checkbox-wrapper input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#abonem-register-form .checkbox-wrapper label {
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: none;
    font-weight: normal;
    cursor: pointer;
    user-select: none;
}

#abonem-register-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff69b4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    padding-right: 35px;
}

#createusersub {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff69b4, #ff8da1);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#createusersub:hover {
    background: linear-gradient(45deg, #ff5ba7, #ff7c94);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,105,180,0.2);
}

#createusersub:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#ajax-response {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
}

#ajax-response.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

#ajax-response.error {
    background-color: #ffebee;
    color: #c62828;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table th,
.form-table td {
    display: block;
    padding: 0;
    border: none;
    text-align: left;
}

.form-table th {
    margin-bottom: 8px;
}

#abonem-message {
    margin-bottom: 20px;
}

#abonem-message .success {
    color: #4CAF50;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 4px;
}

#abonem-message .error {
    color: #f44336;
    padding: 10px;
    background: #ffebee;
    border-radius: 4px;
}

#abonem-register-form input::placeholder {
    color: #999;
    font-style: italic;
    font-size: 0.95em;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

#abonem-register-form input:focus::placeholder {
    opacity: 0.5;
}

#abonem-register-form input:hover::placeholder {
    opacity: 1;
}

#abonem-register-form input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#abonem-register-form input[type="tel"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
    outline: none;
} 