/* Temel ayarlar */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #295882 0%, #231f20 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Konteyner */
.container {
    background-color: #ffffffee;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo */
.logo {
    width: 300px;
    height: auto;
    margin-bottom: 16px;
    animation: fadeIn 1s ease;
    padding-right: 15px;
}

/* Başlık */
h1 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #37474f;
        font-family: 'Arimo', sans-serif;
}

/* Form Elemanları */
input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease; /* ← buraya ekle */

}

button {
    width: 100%;
    padding: 12px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0d47a1;
}

button.secondary {
    background-color: #c2185b;
}

button.secondary:hover {
    background-color: #880e4f;
}

.status {
    margin-top: 12px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive destek */
@media (max-width: 480px) {
  .container {
    padding: 28px 20px;
    max-width: 80%;
  }

  .logo {
    width: 255px;
    padding-right: 15px;
  }

  h1 {
    font-size: 20px;
    font-family: 'Arimo', sans-serif;
  }
}

#verifyBtn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 12px;
  display: block;
  width: 100%;
}

#verifyBtn:hover {
  background-color: #45a049;
}

.language-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.language-switcher button {
  flex: 1;
  padding: 10px 0;
}

.subtitle {
  font-size: 18px;
  color: #444;
  margin-top: -10px;
  margin-bottom: 30px;
  font-style: italic;
}

.welcome-title {
  font-weight: 700;
}

