body {
    background-image: url('back.webp');
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
}

.page-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.logo {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin-bottom: -50px; /* Adjust this value to control overlap */
    z-index: 2;
}

.login-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    margin: 20px;
    text-align: center;
    z-index: 1;
}



@media screen and (max-width: 768px) {
    body {
        background-size: auto 100vh;
        background-position: center;
    }
}



h2 {
    margin-bottom: 20px;
	color: #ffffff;
	text-shadow: 2px 2px 5px black;
}

input[type="text"], input[type="password"] {
    width: 80%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #1155FF; /* Matches the blue color in the logo */
    color: white;
    font-size: 16px;
    top: 0;
    padding: 8px;
    right: 0px;
    position: relative;
    text-shadow: 0px 0px 0px black;
    border-radius: 1em;
    -webkit-box-shadow: 10px 10px 15px #000000;
}

button:hover {
    top: 3px;
    -webkit-box-shadow: 0px 0px 0px #000000;
}


.error-message {
    color: red;
    font-size: 14px;
}
/* Ensure text in info-card is black for readability */
.info-card .info-text {
    color: #fff; /* Set text color to black */
    font-size: 14px; /* Optional: Adjust font size for readability */
    line-height: 1; /* Optional: Improve line spacing */
}

/* Ensure icons are properly aligned and sized */
.info-card .network-icon,
.info-card .monitor-icon {
    font-size: 2px; /* Optional: Adjust icon size */
    color: #4CAF50; /* Keep icons green */
    display: inline-block;
    margin-right: 10px; /* Space between icon and text */
}

/* Mobile adjustments for info-card */
@media (max-width: 600px) {
    .info-card {
        padding: 10px; /* Add padding for better spacing on mobile */
        text-align: left; /* Align text to the left */
    }

    .info-card .info-text {
        font-size: 12px; /* Smaller font size for mobile screens */
    }

    .info-card .network-icon,
    .info-card .monitor-icon {
        font-size: 18px; /* Adjust icon size for mobile */
    }
}
