body {
    font-family: 'Roboto', sans-serif;
    background: url('/images/go.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.9); /* Add a slight transparency to the background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    margin: 20px;
    box-sizing: border-box; /* padding is included in the total width and height */
}

.login-form {
    width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the total width and height */
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    width: 100%; /* Ensure the input group takes full width */
    box-sizing: border-box; /* Ensure padding is included in the total width */
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #333; /* Adjusted color for better readability */
}

.input-group input[type="text"],
.input-group input[type="password"],
.input-group input[type="checkbox"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensure padding is included in the total width */
}
.input-group input[type="text"]{
	width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.input-group input[type="checkbox"] {
    display: inline-block;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.input-group label[for="remember-me"] {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0; /* Adjust margin to align with checkbox */
    color: #333; /* Adjusted color for better readability */
}
.invalid-feedback{
	color: #FF0000;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding is included in the total width */
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .login-container {
        padding: 15px;
    }
    .input-group input[type="text"],
    .input-group input[type="password"],
    .input-group input[type="checkbox"] {
        padding: 8px;
    }
    button[type="submit"] {
        padding: 8px;
    }
}
/* Style for the Google Sign-In button */
.g-signin {
    display: inline-block;
    margin-top: 10px; /* Adjust spacing as needed */
    padding: 10px;
    text-align: center;
    color: #fff;
    background-color: #4285F4; /* Google blue */
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.g-signin:hover {
    background-color: #357AE8; /* Darker blue on hover */
}
