body {
    background-image: url('image/telemarketing.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: auto;
    font-family: Arial, sans-serif;
}

.login-container {
    width: 350px;
    margin: 100px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.status-highlight {
    background-color: yellow;
}