body {
    background-color: #000000;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding-top: 6vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.top-bar {
    background-color: #161616;
    height: 12vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.3vw;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    z-index: 2;
}

.top-bar img{
    text-align: center;
    align-items: center;
}
.point {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    z-index: 0;
}


.button-image {
    height: 4.5vh; 
    width: 4.5vh;
    cursor: pointer;
    position: absolute;
    right: 1.5vw; 
    transition: filter 0.3s ease, transform 0.2s ease-in-out;
}

.button-image:hover {
    filter: brightness(1.2); 
    transform: scale(1.1); 
}

.button-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.container {
    position: relative;
    background-color: #2e2d2d;
    height: 100vh;
    overflow: hidden;
}

#background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-container {
    width: 30vw;
    background-color: #10102a;
    padding: 2vw;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.425);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.login-container h2 {
    margin-bottom: 1.5vw;
    font-size: 1.5vw;
}

.login-container input {
    width: 90%;
    padding: 0.8vw;
    margin-bottom: 1.2vw;
    border: none;
    border-radius: 5px;
    font-size: 1vw;
    text-align: center;
}

.login-container button {
    width: 95%;
    padding: 0.8vw;
    background-color: #4e89f4;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1vw;
    cursor: pointer;
    transition: 0.3s;
}

.login-container button:hover {
    background-color: #3a6fd9;
}
.logo-icon{
    width: 30vh;
    height: auto;
}