
  /* .background-img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    } */

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Alanlar arasına boşluk bırakır */
    font-size: 16px;
    color: #5a3e2b;
}

.remember-me input[type="checkbox"] {
    margin-right: 10px; /* Checkbox ile metin arasında boşluk */
}
    

.login-container {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: #d1a00088;
}

.login-box {
    background: rgba(255, 250, 205, 0.9);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box p {
    margin-top: 10px;
}

.login-title {
    font-family: 'Bagil', serif;
    font-weight: bold;
    margin-bottom: 20px;
    color: #5a3e2b;
}

.login-box input[type="text"], 
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #b08968;
    border-radius: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #33a3ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #008cff;
}

.social-login {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-btn:hover {
    transform: scale(1.1);
}


/* login.css */

/* Mobil uyum için medya sorgusu */
@media (max-width: 600px) {
    .login-container {
        padding: 20px;
    }

    .login-box {
        padding: 20px 15px;
        max-width: 90%;
    }

    .login-title {
        font-size: 28px;
    }

    .login-box input[type="text"],
    .login-box input[type="password"] {
        padding: 8px;
        font-size: 14px;
    }

    button[type="submit"] {
        padding: 10px;
        font-size: 16px;
    }

    .social-btn {
        width: 35px;
        height: 35px;
    }
}