/* Tek renk çizgi */
.cizgi {
    width: 100%;
    height: 70px;
    background-color: #555; /* koyu gri, istersen #888 daha açık olabilir */
    display: flex;
    align-items: center;       /* dikey ortala */
    justify-content: space-between; /* başlık sola, menü sağa */
    padding: 0 15px;           /* soldan ve sağdan boşluk */
    box-sizing: border-box;
}

/* Başlık stili */
.cizgi h1 {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* hafif gölge */
    margin: 0;
    font-size: 32px;
    font-family: Arial, sans-serif;
}

/* Sağ menü */
.sag-menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    font-family: Arial, sans-serif;
}

.sag-menu a:hover {
    text-decoration: underline;
}
body {
    background-image: url('pxfuel.jpg');
    background-size: cover;      /* tüm ekranı kaplar */
    background-repeat: no-repeat;
}

/* Tüm sayfa ortası için */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 120px); /* üstteki çizgiyi ve paddingi düş */
    transform: translateY(-20px);
}

/* Form stili */    
.login-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    text-align: center;
    transform: translateY(-20px);
}

/* Başlık */
.login-form h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-family: Arial, sans-serif;
    transform: translateY(-10px);
}

/* Input alanları */
.login-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transform: translateY(-20px);
}

/* Buton */
.login-form button {
    padding: 10px;
    background-color: #555; /* gri ton */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    transform: translateY(-20px);
}

.login-form button:hover {
    background-color: #333;
}
