@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Genel Sayfa Ayarları */
body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: #1a1a1a; /* Koyu arka plan */
    color: #e0e0e0; /* Açık renk yazı */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Footer'ı en alta sabitlemek için */
}

/* Dar yapı için container */
.container {
    max-width: 500px;
    margin: auto;
    flex: 1;
    text-align: center;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 250px !important; /* Ana sayfadaki logo ile aynı boyut */
    height: auto !important;
    display: block;
}

/* Başlık */
h1 {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 600;
    color: #bdbdbd;
    margin-top: 20px;
}

/* Butonlar */
.btn {
    width: 250px;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Buton Renkleri */
.btn-primary {
    background-color: #ff5252;
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ff1744;
}

.btn-secondary {
    background-color: #424242;
    border: none;
    color: #e0e0e0;
}

.btn-secondary:hover {
    background-color: #616161;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #000; /* Siyah arka plan */
    color: #e0e0e0;
    margin-top: auto;
}

/* Copyright */
.st-copyright-text {
    font-size: 14px;
    color: #bdbdbd;
}

.st-copyright-text a {
    color: #e0e0e0;
    text-decoration: none;
}

.st-copyright-text a:hover {
    color: #bdbdbd;
}

/* Responsive */
@media (max-width: 576px) {
    .logo {
        width: 200px !important;
    }

    h1 {
        font-size: 22px;
    }

    .btn {
        width: 220px;
        padding: 10px 15px;
        font-size: 16px;
    }
}
