body, html {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-image: url('res/back.jpg'); /* Arka plan görselinizi buraya yerleştirin */
background-color: rgb(0, 7, 53);
background-size: cover; /* Arka planı ekranı tam kaplayacak şekilde ayarla */
background-position: center; /* Görseli merkezde hizala */
background-attachment: fixed; /* Arka plan kaydırıldığında sabit kalsın */
height: 100%;
display: flex;
justify-content: center; /* Yatayda ortalamak için */
align-items: center; /* Dikeyde ortalamak için */
color: #444;
}

.container {
width: 100%;
max-width: 600px;
background-color: rgb(255, 255, 255);
border-radius: 16px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
overflow: hidden;
transform: scale(1);
transition: transform 0.3s ease-in-out;

display: flex;
flex-direction: column; /* İçeriği dikey olarak düzenlemek için */
justify-content: center; /* Dikeyde ortalamak için */
align-items: center; /* Yatayda ortalamak için */
}

.container:hover {
transform: scale(1.02);
}

h1 {
font-size: 28px;
color: #2c3e50;
font-weight: 600;
margin-bottom: 30px;
}

p {
font-size: 16px;
color: #7f8c8d;
margin-bottom: 25px;
}

label {
font-size: 14px;
color: #2c3e50;
font-weight: 500;
margin-bottom: 10px;
text-align: left;
display: block;
width: 100%; /* Label'in tam genişlik almasını sağla */
}

input[type="url"] {
width: 100%;
padding: 15px;
margin: 10px 0 20px;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 16px;
background-color: #f3f3f3;
transition: border-color 0.3s;
}

input[type="url"]:focus {
border-color: #3498db;
outline: none;
}

button {
width: 100%;
padding: 15px;
background-color: #3498db;
color: white;
font-size: 18px;
font-weight: 600;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s;
}

button:hover {
background-color: #2980b9;
}

  /* Footer Düzenlemeleri */
  .footer {
    margin-top: 40px;
    font-size: 14px;
    color: #95a5a6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Logo ile şirket adı arasında boşluk */
    text-align: center;
}

.footer img {
    width: 30px; /* Logo boyutunu ayarla */
    height: 30px; /* Logo boyutunu ayarla */
}

.footer .company-name {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    input[type="url"] {
        padding: 12px;
        font-size: 14px;
    }

    button {
        font-size: 16px;
        padding: 12px;
    }

    .container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }

    input[type="url"] {
        font-size: 14px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }
}