body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpg'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    color: #fff;
}

p {
    color: #fff;
}

.login-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    width: 300px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 150px; /* Adjust based on your logo size */
}

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

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f4f4f4;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0e5881;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #ffc33c;
}

.error {
    color: #ff4d4d;
    margin-top: 20px;
}

.footer-text {
    margin-top: 20px;
}

.footer-text a {
    color: #ffc33c;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}
