/* General body styles for login page */
body {
    font-family: 'Roboto Condensed', sans-serif;
    background: url('/SMD/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for the login form */
.login-container {
    background: rgb(55 55 55 / 54%); /* Translucent white background */
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px); /* Frosted glass effect */
    margin-top: 20px; /* Adjust as needed */
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 100px; /* Adjust size as necessary */
}

.login-container h1 {
    margin: 0;
    padding: 10px;
    font-size: 24px;
    color: #333;
}

.login-container p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.login-container .form-group {
    margin-bottom: 20px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 90%;
    padding: 12px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    background: #e3e3e3;
    color: #333;
    font-size: 16px;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #59595b; /* Custom button color */
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container button:hover {
    background-color: #020202; /* Darker shade for hover */
}
