* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loginbackground {
    font-family: Arial, sans-serif;
    /*background: #f2f2f2;*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: radial-gradient(circle, #1a3455, red, blue, white);
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 60vw;
}

.login-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.textbox {
    margin-bottom: 20px;
}

    .textbox input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

        .textbox input:focus {
            outline: none;
            border-color: #1a3455;
        }

.button {
    width: 100%;
    padding: 12px;
    background-color: #1a3455;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

    .button:hover {
        background-color: #ab3140;
        color: white;
    }

.hs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    /* z-index: -1; */
}

@media (max-width: 600px) {
    .login-box {
        padding: 30px;
        width: 90%;
    }

    .login-logo {
        width: 160px; /* Daha küçük ekranlarda logo boyutu */
    }
}


.userBody {
    margin: 0;
    /* font-family: regular; */
}

.navbar {
    height: 50px;
    background-color: white;
    color: white;
    display: flex;
    /* align-items: center; */
    padding: 2px;
}

    .navbar button {
        background-color: white;
        color: #007bff;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }

.sidebar {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    color: black;
}

    .sidebar a {
        padding: 10px 15px;
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
        border-radius: 30px;
    }

    /* .sidebar a:hover {
    animation-name: example;
    animation-duration: 4s;
} */

    .sidebar .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

.content {
    margin-left: 0;
    transition: margin-left 0.3s;
    padding: 20px;
}

    .content.shift {
        margin-left: 250px;
    }

#sidebar.open {
    width: 250px;
}

.navbar-toggler {
    margin-left: 0; /* Ekstra boşluk varsa sıfırlanır */
    padding-left: 0; /* Ekstra iç boşluk varsa sıfırlanır */
}

/* .menu {
    animation-name: example;
    animation-duration: 4s;
  } */

@keyframes example {
    from {
        background-color: red;
    }

    to {
        background-color: yellow;
    }
}
