/* Body background */
body {
    background-image: url("/assets/images/blue-background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    color: #fff;
    font-family: "Roboto", sans-serif !important;
}

/* Login container */
.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 1rem; /* Adds spacing between elements */
}

/* Login box design */
.login-box {
    background-color: rgba(
        0,
        0,
        0,
        0.7
    ); /* Slightly darker for better contrast */
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo styling */
.site-logo img {
    width: 130px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

/* Welcome text and tagline */
h2 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.text-muted {
    color: #ddd !important; /* Light text for readability */
}

/* Form control styling */
.form-control {
    background-color: #222;
    color: #fff;
    border: 1px solid #666;
    border-radius: 5px;
    padding: 0.8rem;
    font-size: 1rem;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:focus {
    background-color: #333;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    color: #fff;
}

/* Button styling */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Support text link */
a {
    color: #00bcd4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer {
    color: #bbb;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .login-box {
        padding: 2rem;
    }

    .site-logo img {
        width: 100px;
    }
}
