
/* Kutulama ve genel font ayarları */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 0;
}

.page.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    color: white;
    z-index: 999;
    text-align: center;
    position: relative;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.input-group > *:not(:last-child) {
    margin-bottom: 10px;
}

input[type="password"], button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: #ff79c6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff92d0;
}
