* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.container {
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    border: 2px solid #003366;
    margin-bottom: 20px;
    box-shadow: 5px 5px #003366;
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    border-radius: 0;
    transition: transform 0.2s;
}

.cikis {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    border: 2px solid #bdbdbd;
    margin-bottom: 20px;
    box-shadow: 5px 5px #bdbdbd;
    text-decoration: none;
    color: #bdbdbd;
    font-weight: bold;
    border-radius: 0;
    transition: transform 0.2s;
}

        .link-card:hover {
            transform: scale(1.02);
        }

        .link-card img {
            width: 50px;
            height: 50px;
            margin-right: 15px; 
        }

        .link-text {
            flex: 1;
            text-align: center;
            font-size: 18px;
        }

.password-input {
    padding: 10px;
    font-size: 16px;
    width: 80%;
    margin-bottom: 15px;
    border: none; /* Kenar çizgisini kaldır */
    outline: none; /* Kenar çizgisini kaldır */
    color: #003366;
}

.password-btn {
    padding: 12px 25px;
    font-size: 16px;
    color: white;
    background-color: #003366;
    border: none;
    border-radius: 0; /* Kart stiline uyacak şekilde */
    cursor: pointer;
    transition: background-color 0.3s; /* Geçiş efekti */
}

.password-btn:hover {
    background-color: #0056b3; /* Hover durumunda arka plan rengi değişimi */
}

.link-text {
    flex: 1;
    text-align: center; /* Metni ortala */
    font-size: 18px;
}

.links-container {
    display: none;
}