body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 700px;
    padding: 20px;
    box-sizing: border-box;
}

.form-container {
    color: white;
    margin: 0;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

input, button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

input[type="file"] {
    background-color: #222;
    color: white;
}

input[type="file"]::-webkit-file-upload-button {
    color: white;
    background: #333;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
}

button {
    background-color: rgb(43, 117, 255);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: rgb(30, 90, 200);
}

div#logo-1 img {
    position: fixed;
    width: 80px;
    top: 775px;
    left: 25px;
}

.ilanlar {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.ilan {
    background-color: #111;
    border: 2px solid rgb(43, 117, 255);
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    box-sizing: border-box;
    text-align: center;
}

.ilan img {
    width: 100%;
    height: auto;
    max-width: 750px;
    max-height: 750px;
    border-radius: 10px;
    margin-top: 10px;
}

.ilan h3 {
    color: white;
    margin: 0;
    font-size: 18px;
}

.ilan p {
    color: #aaa;
    margin: 5px 0 0 0;
    font-size: 14px;
    font-style: italic;
}
