    /* style.css */

    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); /* Mor ve mavi tonlarında hoş bir gradyan */
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
        color: #ffffff;
    }
    .container {
        background-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf beyaz arka plan */
        backdrop-filter: blur(10px); /* Arka planı bulanıklaştırır */
        border-radius: 20px; /* Daha yuvarlak köşeler */
        padding: 40px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
        text-align: center;
        max-width: 450px; /* Daha dar bir form için */
        width: 90%;
        border: 1px solid rgba(255, 255, 255, 0.2); /* Hafif beyaz kenarlık */
    }
    h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    .form-group {
        margin-bottom: 20px;
        text-align: left;
    }
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 1.05rem;
        opacity: 0.9;
    }
    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="email"],
    .form-group select { /* register.php için de geçerli olacak */
        width: 100%;
        padding: 12px 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease;
    }
    .form-group input[type="text"]::placeholder,
    .form-group input[type="password"]::placeholder,
    .form-group input[type="email"]::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    .form-group input[type="text"]:focus,
    .form-group input[type="password"]:focus,
    .form-group input[type="email"]:focus,
    .form-group select:focus {
        border-color: #4CAF50;
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.5);
        background-color: rgba(255, 255, 255, 0.2);
    }
    .form-group select option { /* register.php için de geçerli olacak */
        background-color: #2575fc; /* Selectbox seçenekleri için arka plan */
        color: #ffffff;
    }
    .btn-submit {
        background-color: #4CAF50; /* Yeşil tonu */
        color: white;
        padding: 14px 30px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        width: 100%;
        border: none;
        margin-top: 10px;
    }
    .btn-submit:hover {
        background-color: #45a049;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    .link-options {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 0.95rem;
        opacity: 0.9;
    }
    .link-options a {
        color: #008CBA; /* Mavi tonu */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    .link-options a:hover {
        color: #007bb5;
        text-decoration: underline;
    }

    /* Tanıtım sayfası ve diğer genel buton stilleri için eklemeler */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        margin: 10px;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .btn-primary {
        background-color: #4CAF50;
        color: white;
    }
    .btn-primary:hover {
        background-color: #45a049;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    .btn-secondary {
        background-color: #008CBA;
        color: white;
    }
    .btn-secondary:hover {
        background-color: #007bb5;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Kayıt sayfası için özel stiller */
    .checkbox-group {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
        width: 20px;
        height: 20px;
        accent-color: #4CAF50;
        cursor: pointer;
    }
    .checkbox-group label {
        font-size: 0.95rem;
        opacity: 0.9;
        cursor: pointer;
    }
    .link-text { /* Kayıt sayfası için link metni */
        margin-top: 20px;
        font-size: 0.95rem;
        opacity: 0.9;
    }
    .link-text a {
        color: #008CBA;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    .link-text a:hover {
        color: #007bb5;
        text-decoration: underline;
    }

    /* Duyarlı tasarım için medya sorguları */
    @media (max-width: 768px) {
        .container {
            padding: 30px;
        }
        h1 {
            font-size: 2rem;
        }
        .form-group label {
            font-size: 1rem;
        }
        .form-group input, .form-group select {
            padding: 10px 12px;
            font-size: 0.95rem;
        }
        .btn-submit {
            padding: 12px 25px;
            font-size: 1rem;
        }
        .btn {
            padding: 10px 20px;
            margin: 8px;
            font-size: 0.9rem;
        }
    }
    @media (max-width: 480px) {
        .container {
            padding: 20px;
        }
        h1 {
            font-size: 1.8rem;
        }
        p { /* Tanıtım sayfası paragrafı için */
            font-size: 0.9rem;
        }
        .btn { /* Tanıtım sayfası butonları için */
            display: block;
            width: calc(100% - 20px);
            margin: 10px auto;
        }
    }
    