/* LOREFIX Kurumsal Renkleri ve Değişkenler */
:root {
    --lorefix-blue: #007bff;
    --lorefix-pink: #e91e63;
    --text-color: #333333;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Tasarımı */
.main-header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Stilleri */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    gap: 2px;
}

.logo-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.blue { background-color: var(--lorefix-blue); }
.pink { background-color: var(--lorefix-pink); }
.logo-text { color: var(--text-color); margin-left: 4px; font-size: 22px; }

/* Form Konteynırı */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.password-reset-form p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Input ve Butonlar */
.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--lorefix-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: var(--lorefix-blue);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #0069d9;
}

.form-links {
    margin-top: 1.5rem;
}

.form-links a {
    color: var(--lorefix-blue);
    text-decoration: none;
    font-size: 14px;
}

/* Modal (Uyarı Kutusu) Stilleri */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}

.modal.hidden {
    display: none !important;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    position: relative;
}

.close-button {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px; cursor: pointer; color: #94a3b8;
}

.modal-btn {
    margin-top: 1.5rem;
    padding: 10px 30px;
}

/* Footer */
.main-footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
}

.copyright {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 10px;
}