/* =========================================================
   HEADER – sade, beyaz, modern
   ========================================================= */

.pkp_structure_head {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 10px 0 4px 0 !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    position: sticky;
    top: 0;
    z-index: 50;
}

.pkp_head_wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Logo + kullanıcı */
.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pkp_site_name .is_img img {
    max-height: 40px;
    border-radius: 6px;
}

.pkp_site_name .is_text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f172a !important;
}

/* Kullanıcı menüsü */
.pkp_navigation_user_wrapper {
    display: flex;
    gap: 8px;
}

.pkp_navigation_user > li > a {
    padding: 5px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151 !important;
    font-size: 0.78rem;
}

.pkp_navigation_user > li > a:hover {
    background: #e5e7eb;
    color: #111827 !important;
}

/* =========================================================
   NAVBAR – SOL MENÜ + SAĞ ARAMA (TAM TURKUAZ)
   ========================================================= */

.pkp_navigation_primary_wrapper {
    background: #00b8c4 !important;
    padding: 6px 24px !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; /* SOL + SAG */
}

/* Menü listesi */
.pkp_navigation_primary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    background: none !important;
}

/* Menü yazıları */
.pkp_navigation_primary > li > a {
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #ffffff !important;
    background: transparent !important;
}

/* Hover */
.pkp_navigation_primary > li > a:hover {
    color: #e0f7fa !important;
}

/* Aktif menü */
.pkp_navigation_primary > li.current > a {
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff !important;
}

/* =========================================================
   SEARCH – NAVBAR'IN SAĞINDA
   ========================================================= */

.pkp_search {
    margin: 0;
    display: flex;
    align-items: center;
}

.pkp_search form {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkp_search input[type="text"] {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.95);
    font-size: 0.78rem;
    min-width: 160px;
    color: #0f172a;
    transition: 0.15s;
}

.pkp_search input[type="text"]:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}

.pkp_search input[type="submit"] {
    background: #ffffff;
    color: #00b8c4 !important;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    border: none;
    cursor: pointer;
    transition: 0.15s;
}

.pkp_search input[type="submit"]:hover {
    background: #f0fdfd;
}

/* =========================================================
   FOOTER – OJS default kapat + imza ekle
   ========================================================= */

.pkp_structure_footer {
    background: #ffffff !important;
    padding: 24px 0 !important;
    border-top: 1px solid #e5e7eb !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* OJS footer kapat */
.pkp_structure_footer .pkp_brand_footer,
.pkp_structure_footer .pkp_footer_content,
.pkp_structure_footer .pkp_license {
    display: none !important;
}

/* Senin footer */
.mymag-footer {
    font-size: 0.86rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.03rem;
}

.mymag-footer a {
    color: #00b8c4 !important;
    text-decoration: none;
}

.mymag-footer a:hover {
    text-decoration: underline;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .pkp_site_name_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .pkp_navigation_primary_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 24px !important;
    }

    .pkp_search {
        width: 100%;
        padding-right: 0;
    }

    .pkp_search form {
        width: 100%;
    }

    .pkp_search input[type="text"] {
        width: 100%;
    }

    .pkp_navigation_primary {
        overflow-x: auto;
        white-space: nowrap;
    }

    .pkp_navigation_primary::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================================
   LOGIN PAGE – Submission sayfası tasarımına uygun
   ========================================================= */

/* Merriweather Sans font ekle */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;700;800&display=swap');

/* Login sayfasında header ve footer'ı gizle */
body.pkp_page_login .pkp_structure_head,
body.pkp_page_login .pkp_structure_footer,
body.page_login .pkp_structure_head,
body.page_login .pkp_structure_footer,
body[class*="login"] .pkp_structure_head,
body[class*="login"] .pkp_structure_footer {
    display: none !important;
}

/* Register sayfasında header/footer gizle */
body.pkp_page_register .pkp_structure_head,
body.pkp_page_register .pkp_structure_footer,
body.page_register .pkp_structure_head,
body.page_register .pkp_structure_footer,
body.pkp_op_register .pkp_structure_head,
body.pkp_op_register .pkp_structure_footer,
body.pkp_op_registercomplete .pkp_structure_head,
body.pkp_op_registercomplete .pkp_structure_footer,
body.page_register_complete .pkp_structure_head,
body.page_register_complete .pkp_structure_footer {
    display: none !important;
}

body.pkp_page_login .pkp_structure_content,
body.page_login .pkp_structure_content,
body[class*="login"] .pkp_structure_content {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_page_register .pkp_structure_content,
body.page_register .pkp_structure_content {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_op_register .pkp_structure_content {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_op_registercomplete .pkp_structure_content,
body.page_register_complete .pkp_structure_content {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_page_login .pkp_structure_main,
body.page_login .pkp_structure_main,
body[class*="login"] .pkp_structure_main {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_page_register .pkp_structure_main,
body.page_register .pkp_structure_main {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_op_register .pkp_structure_main {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_op_registercomplete .pkp_structure_main,
body.page_register_complete .pkp_structure_main {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    width: 100% !important;
}

body.pkp_page_login .pkp_structure_page,
body.page_login .pkp_structure_page,
body[class*="login"] .pkp_structure_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

body.pkp_page_register .pkp_structure_page,
body.page_register .pkp_structure_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

body.pkp_op_register .pkp_structure_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

body.pkp_op_registercomplete .pkp_structure_page,
body.page_register_complete .pkp_structure_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

body.pkp_page_login .pkp_structure_main > .page,
body.page_login .pkp_structure_main > .page,
body[class*="login"] .pkp_structure_main > .page {
    width: 100%;
}

body.pkp_page_register .pkp_structure_main > .page,
body.page_register .pkp_structure_main > .page {
    width: 100%;
}

body.pkp_op_register .pkp_structure_main > .page {
    width: 100%;
}

body.pkp_op_registercomplete .pkp_structure_main > .page,
body.page_register_complete .pkp_structure_main > .page {
    width: 100%;
}

/* OJS Login Sayfası Override - Submission tasarımına uygun */
.pkp_page_login,
.page_login,
[class*="login"] {
    font-family: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background: #ffffff !important;
}

/* Login container */
.custom-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 0 20px;
    font-family: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
}

.login-container-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
    justify-items: center;
    min-height: 100vh;
}

/* Sol panel - Journal cover veya gradient */
.login-left-panel {
    display: none;
    width: 100%;
    padding: 0;
    background: transparent;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

@media (min-width: 1024px) {
    .login-left-panel {
        display: flex;
    }
}

.login-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.journal-cover-image {
    width: auto;
    max-width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: -4px;
}

.journal-cover-gradient {
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom right, #0b4660, #0a2d3a, #000000);
    border-radius: 12px;
}

/* Sağ panel - Login form */
.login-right-panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 32px 24px;
}

@media (min-width: 1024px) {
    .login-right-panel {
        width: 50%;
    }
}

.login-form-wrapper {
    width: 100%;
    max-width: 520px;
}

/* Header */
.login-header {
    margin-bottom: 32px;
}

.login-welcome-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0b4660;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.login-subtitle {
    color: #71717a;
    margin: 0;
    font-size: 1rem;
}

.login-helper-text {
    margin: 12px 0 0 0;
    color: #52525b;
    font-size: 0.9375rem;
}

/* Hata mesajı */
.login-error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3f3f46;
    margin: 0;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #d4d4d8;
    background: #ffffff;
    color: #18181b;
    font-size: 0.9375rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #a1a1aa;
}

.form-input:focus {
    outline: none;
    border-color: #0b4660;
    box-shadow: 0 0 0 3px rgba(11, 70, 96, 0.12);
}

/* Password */
.password-input-wrapper {
    position: relative;
}

.password-input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #71717a;
}

.password-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.remember-me-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #3f3f46;
}

.remember-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d4d4d8;
    accent-color: #0b4660;
    cursor: pointer;
}

.forgot-password-link {
    font-size: 0.875rem;
    color: #0b4660;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: #0a4f6a;
    text-decoration: underline;
}

/* Buttons */
.signin-button,
.orcid-button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.signin-button {
    background: #0b4660;
    color: #ffffff;
}

.signin-button:hover {
    background: #0a4f6a;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.signin-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.orcid-button {
    background: #A6CE39;
    color: #ffffff;
}

.orcid-button:hover {
    background: #96BE2E;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.orcid-icon {
    width: 20px;
    height: 20px;
}

/* Signup link */
.signup-link-wrapper {
    margin-top: 24px;
    text-align: center;
    font-size: 0.875rem;
    color: #71717a;
}

.signup-link {
    color: #0b4660;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.signup-link:hover {
    color: #0a4f6a;
    text-decoration: underline;
}

/* CAPTCHA alanları */
.recaptcha_wrapper,
.altcha_wrapper {
    margin-top: -4px;
}

/* Mobile responsive */
@media (max-width: 1023px) {
    .login-container-wrapper {
        flex-direction: column;
    }

    .login-right-panel {
        width: 100%;
        padding: 24px 16px;
    }

    .login-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .login-welcome-title {
        font-size: 1.5rem;
    }

    .login-subtitle {
        font-size: 0.9375rem;
    }
}

/* =========================================================
   REGISTER PAGE – Fullscreen gradient + centered card
   ========================================================= */

body.pkp_page_register,
body.page_register {
    font-family: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background: linear-gradient(135deg, #0b3a50 0%, #031624 100%) !important;
}

body.pkp_op_register {
    font-family: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background: linear-gradient(135deg, #0b3a50 0%, #031624 100%) !important;
}

body.pkp_op_registercomplete,
body.page_register_complete {
    font-family: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background: linear-gradient(135deg, #0b3a50 0%, #031624 100%) !important;
}

body.pkp_page_register .cmp_breadcrumbs,
body.page_register .cmp_breadcrumbs,
body.pkp_page_register h1.page_title,
body.page_register h1.page_title,
body.pkp_op_register .cmp_breadcrumbs,
body.pkp_op_register h1.page_title {
    display: none !important;
}

.custom-register-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(135deg, #0b3a50 0%, #031624 100%);
    width: 100%;
}

.register-card {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 32px 36px 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.register-card-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.register-cover-thumb {
    width: 80px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.register-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #0b4660;
}

.register-subtitle {
    margin: 0;
    color: #52525b;
    font-size: 1rem;
}

.register-progress {
    width: 100%;
    max-width: 360px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.register-progress-bar {
    width: 45%;
    height: 100%;
    background: #0b4660;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.register-form fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.register-form legend {
    display: none !important;
}

.register-form .fields {
    display: grid;
    gap: 14px;
}

.register-form .identity .fields {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.register-form .identity .affiliation,
.register-form .identity .country {
    grid-column: span 2;
}

.register-form .login .fields {
    grid-template-columns: 1fr;
}

.register-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
}

.register-contexts-wrapper {
    margin-top: 16px;
}

.register-contexts-wrapper fieldset[name="contexts"] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 16px;
    margin: 0;
    background: #f9fafb;
}

.register-contexts-wrapper legend {
    display: block !important;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.register-contexts-wrapper .contexts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.register-contexts-wrapper .context .name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.register-contexts-wrapper .roles {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.register-contexts-wrapper .roles legend {
    display: none !important;
}

.register-contexts-wrapper label {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1f2937;
}

.register-contexts-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.register-contexts-wrapper .context_privacy {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #374151;
}

.register-contexts-wrapper .context_privacy label {
    font-weight: 500;
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d4d4d8;
    border-radius: 10px;
    background: #ffffff;
    font-size: 0.95rem;
    color: #111827;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.register-form input:focus,
.register-form select:focus {
    outline: none;
    border-color: #0b4660;
    box-shadow: 0 0 0 3px rgba(11, 70, 96, 0.12);
}

.register-form .required {
    color: #ef4444;
    font-weight: 700;
}

.register-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.register-submit {
    width: 100%;
    background: #0b4660;
    color: #ffffff;
    padding: 14px 18px;
    border: 2px solid #0b4660;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.register-submit:hover {
    background: #083144;
    border-color: #083144;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.register-login-hint {
    font-size: 0.95rem;
    color: #4b5563;
    text-align: center;
}

.register-login-hint a {
    color: #0b4660;
    font-weight: 700;
    margin-left: 6px;
    text-decoration: none;
}

.register-login-hint a:hover {
    text-decoration: underline;
}

.register-form .consent,
.register-form .reviewer,
.register-form .reviewer_nocontext {
    margin-top: 10px;
}

.register-form .optin label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #374151;
}

.register-form .optin input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Register Complete */
.register-complete-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(135deg, #0b3a50 0%, #031624 100%);
    width: 100%;
}

.register-complete-card {
    width: 100%;
    max-width: 640px;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 30px 36px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.register-complete-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0b4660;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.register-complete-icon svg {
    width: 34px;
    height: 34px;
}

.register-complete-title {
    margin: 8px 0 0 0;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0b4660;
}

.register-complete-subtitle {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
}

.register-complete-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.complete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.complete-button.primary {
    background: #0b4660;
    color: #ffffff;
    border: 2px solid #0b4660;
}

.complete-button.primary:hover {
    background: #083144;
    border-color: #083144;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.complete-button.ghost {
    background: #f8fafc;
    color: #0b4660;
    border: 2px solid #e5e7eb;
}

.complete-button.ghost:hover {
    border-color: #0b4660;
    color: #083144;
}

.complete-button.linklike {
    background: transparent;
    color: #0b4660;
    border: none;
    text-decoration: underline;
    font-weight: 700;
}

.complete-button.linklike:hover {
    color: #083144;
}

@media (max-width: 640px) {
    .register-complete-card {
        padding: 26px 20px 30px 20px;
    }
}
@media (max-width: 640px) {
    .register-card {
        padding: 26px 20px 30px 20px;
        max-width: 540px;
    }

    .register-title {
        font-size: 1.6rem;
    }

    .register-subtitle {
        font-size: 0.95rem;
    }

    .register-form .identity .affiliation,
    .register-form .identity .country {
        grid-column: span 1;
    }
}

/* ============================================
   REGISTER PAGE STYLES
   ============================================ */

/* Register sayfası için genel stiller */
.custom-register-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b4660;
    padding: 0 20px;
    font-family: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
}

.register-container-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Sol panel - Journal cover */
.register-left-panel {
    display: none;
    width: 50%;
    padding: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    margin: 0;
}

@media (min-width: 1024px) {
    .register-left-panel {
        display: flex;
    }
}

.register-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.register-cover-image {
    width: auto;
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    margin: 0;
    padding: 0;
}

.register-cover-gradient {
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom right, #0b4660, #0a2d3a, #000000);
    border-radius: 12px;
}

/* Sağ panel - Register form */
.register-right-panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 32px 24px;
}

@media (min-width: 1024px) {
    .register-right-panel {
        width: 50%;
    }
}

.register-form-wrapper {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Header */
.register-header {
    margin-bottom: 32px;
    text-align: center;
}

.register-welcome-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0b4660;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.register-subtitle {
    font-size: 0.9375rem;
    color: #71717a;
    margin: 0;
    line-height: 1.5;
}

/* Register form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* Form row for First Name and Last Name side by side */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field-half {
    width: 100%;
}

/* Register button */
.register-button {
    width: 100%;
    background: #ffffff;
    color: #0b4660;
    border: 2px solid #0b4660;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.register-button:hover {
    background: #0b4660;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 70, 96, 0.3);
}

.register-button:active {
    transform: translateY(0);
}

/* Sign in link */
.signin-link-wrapper {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: #71717a;
}

.signin-link {
    color: #0b4660;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.2s ease;
}

.signin-link:hover {
    color: #0a4f6a;
    text-decoration: underline;
}

/* Journal Selection Section */
.journal-selection-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.journal-selection-header {
    margin-bottom: 20px;
}

.journal-selection-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.5;
}

.journal-selection-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.journal-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.journal-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.journal-roles {
    display: flex;
    gap: 24px;
    align-items: center;
}

.role-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #374151;
}

.role-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #0b4660;
}

.reviewer-interests-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.reviewer-interests-label {
    font-size: 0.9375rem;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.5;
}

.reviewer-interests-input {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
}

.notification-consent {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.notification-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.notification-checkbox {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0b4660;
    flex-shrink: 0;
}

/* Responsive adjustments for register page */
@media (max-width: 1023px) {
    .register-form-wrapper {
        padding: 32px 24px;
    }
    
    .register-welcome-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .journal-roles {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
