/* Existing styles */
body, html {
    width: 100%; /* Ensure the body takes full width */
    height: 100%; /* Ensure the body takes full height */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Hide any overflow */
    background: none; /* Remove any background set on body */
}

.background-container {
    position: fixed; /* Position fixed to cover the whole screen */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../images/rootlogin.jpg') no-repeat center center fixed;
    background-size: cover;
}

.logo-container img {
    width: 200px;
    margin-bottom: 50px;
}

.link-container a {
    margin: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    background: rgba(0,0,0,0.5);
    border-radius: 5px;
}

/* New styles for consistent button width */
.link-container a {
    width: 180px; /* Set a fixed width */
    text-align: center; /* Center text within the button */
    display: inline-block; /* Change display to inline-block for alignment */
}

/* Responsive adjustments */
@media (min-width: 576px) {
    .link-container a {
        width: 200px; /* Larger width for larger screens */
    }
}
