@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Nunito:wght@400;700&display=swap');

body {
    background-color: #F8E0E6; /* Soft pembe tema */
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    margin: 0;
    flex-direction: column;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3); /* Pembe tonlu belirgin gölge */
    max-width: 350px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

h1 {
    font-family: 'Playfair Display', serif; 
    color: #444;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* KULLANICI ADI VE ŞİFRE ALANLARININ ORTAK STİLİ */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #FFC0CB; /* Açık pembe, davetkar kenarlık */
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1.1rem;
    text-align: center;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #FF69B4; /* Canlı pembe odak rengi */
    outline: none;
}

button {
    background-color: #FF69B4; /* Canlı pembe buton */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s, transform 0.1s;
}

button:hover {
    background-color: #E91E63;
    transform: translateY(-2px); 
}

.error {
    color: #E91E63;
    margin-bottom: 15px;
    font-weight: 700;
}
