/* Sayfa genel ayarları */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    height: 100vh;
    background: url("foto/testimage.png") no-repeat center center/100% 100%;
    /* arka plan resmi */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login kutusu */
.login-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px 50px;
    width: 380px;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Başlık */
.login-box h2 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 500;
}

/* Hata mesajı */
.error-messsage {
    background: rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 15px;
}

/* Giriş alanları */
.login-box input[type="text"],
.login-box input[type="password"],
.login-box input[name="mail"] {
    width: 95%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    outline: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
}


/* Placeholder rengi */
::placeholder {
    color: #ddd;
}

/* Giriş butonu */
.login-box button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #00bfff, #0072ff);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button[type="submit"]:hover {
    background: linear-gradient(90deg, #0072ff, #00bfff);
    transform: scale(1.03);
}


/* Yeni hesap oluşturma bölümü */
.reigster-box {
    margin-top: 15px;
    color: #ccc;
}

.reigster-box p {
    margin-bottom: 8px;
    font-size: 14px;
}

.reigster-btn {
    background: none;
    border: 1px solid #00bfff;
    color: #00bfff;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.reigster-btn:hover {
    background: #00bfff;
    color: white;
}

