/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2 {
    margin: 0;
    color: #1a1a1a;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Ensures the container takes up available space */
    background-color: #f8f8f8;
    padding-bottom: 60px; /* Adjust according to footer height */
}

.login-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-box img {
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 8px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.input-group input:focus {
    border-color: #2196F3;
    outline: none;
}
.input-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    appearance: none; /* Removes default arrow for better styling across browsers */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23333" d="M2 0L0 2h4L2 0zM2 5l2-2H0l2 2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.input-group select:focus {
    border-color: #2196F3;
    outline: none;
}

.login-btn {
    background-color: #0b79d0;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
	margin-top:10px;
}

.login-btn:hover {
    background-color: #1976D2;
}

.register-link {
    margin-top: 20px;
	
}

.register-link a {
    color:#03F;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.modal input {
    padding: 10px;
    width: 90%;
    margin-top: 15px;
}

.modal button {
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal button:hover {
    background-color: #1976D2;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.message {
            color: green;
            margin: 14px 0;
			font-weight:bold;

        }
.error {
            color: red;
            margin: 14px 0;
						font-weight:bold;

        }
