/* main.css */

/* Global CSS styles for all pages */
body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
}

.login-container h1 {
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    margin-bottom: 10px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.login-form input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.error-message {
    color: red;
    text-align: center;
}

/* Additional CSS styles for the navigation bar (Specific to loginmenu.php) */
.navbar {
    background-color: rgba(0, 123, 255, 0.7); /* Transparent blue color */
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.navbar .logo {
    margin-left: 50px; /* Add some space before the logo */
}

.navbar .menu {
    margin-right: 20px; /* Add some space after the menu */
}

.navbar .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navbar .logo img {
    height: 30px; /* Adjust the height as needed */
    margin-right: 10px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    padding: 10px;
    position: relative;
}

.navbar li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navbar li a:hover {
    background-color: #555;
}

/* Style the drop-down menu */
.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 123, 255, 0.7); /* Transparent blue color */
    display: none;
}

.navbar li:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu li {
    padding: 10px;
}

.navbar .dropdown-menu li a {
    color: white;
    text-decoration: none;
}

.navbar .dropdown-menu li a:hover {
    background-color: #555;
}

/* Change the color of the text within the span */
.navbar .menu span {
    color: white;
    font-family: 'Roboto', sans-serif; /* Applying Roboto font */
    font-style: italic; /* Set font style to italic */
    font-weight: 300; /* Set font weight to 300 */
}

/* Down arrow icon styles */
.down-arrow {
    margin-left: 5px;
    font-size: 12px;
    color: white;
}


.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 75%; /* Increase container size to 75% */
    max-width: 800px;
}

.container h1 {
    text-align: center;
}

.form-container {
    margin-right: 30px; /* Create space between the form and the container */
}

.form-container label {
    margin-bottom: 10px;
}

.form-container input[type="text"],
.form-container input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-container input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.error-message {
    color: red;
    text-align: center;
}

.success-message {
    color: green;
    text-align: center;
}

