body {
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding-top: 0vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.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: #2c2c2c;
    padding: 2vw;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(146, 248, 255, 0.753);
    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: #1fe718;
}
.logo-icon{
    width: 30vh;
    height: auto;
}
@media screen and (max-width: 900px) and (orientation: portrait) {

    body {
        color: white;
        font-family: Arial, sans-serif;
        text-align: center;
        margin: 0;
        padding: 0;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .point {
        position: absolute;
        border-radius: 50%;
        background-color: white;
        opacity: 0.6;
        border: none;
        outline: none;
        z-index: 0;
    }

    .button-image {
        height: 5vh;
        width: 5vh;
        cursor: pointer;
        position: absolute;
        right: 3vw;
        top: 2vh;
        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;
        min-height: 100vh;
        overflow: hidden;
    }

    #background-container {
        position: fixed;
        inset: 0;
        overflow: hidden;
    }

    .login-container {
        width: 90vw;
        min-height: 45vh;
        background-color: #2c2c2c;
        padding: 5vw;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(146, 248, 255, 0.75);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .login-container h2 {
        margin-bottom: 4vw;
        font-size: 6vw; 
    }

    .login-container input {
        width: 100%;
        padding: 3.5vw;
        margin-bottom: 4vw;
        border: none;
        border-radius: 8px;
        font-size: 4.5vw;
        text-align: center;
    }

    .login-container button {
        width: 100%;
        padding: 3.5vw;
        background-color: #4e89f4;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 4.5vw; 
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .login-container button:hover {
        background-color: #1fe718;
    }

    .logo-icon {
        width: 45vw;
        max-width: 250px;
        height: auto;
        margin-bottom: 4vw;
    }
}
