.twc-malidc > div > div {
background-color: black;
}
/* General styling */
.twc-malidc {
font-family: 'Arial', sans-serif;
max-width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 50px;
color: white; /* Default text color for all text on black background */
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Input fields styling */
.twc-malidc input[type="email"],
.twc-malidc input[type="password"],
.twc-malidc input[type="text"] {
color: black !important; /* Text in input fields is black */
font-size: 12px;
border-radius: 8px;
box-sizing: border-box;
padding: 12px;
text-transform: uppercase;
}
/* Titles should be white */
.twc-malidc h1,
.twc-malidc h2,
.twc-malidc h3,
.twc-malidc h4,
.twc-malidc h5,
.twc-malidc h6,
.twc-malidc label {
color: white;
}
/* Hover state: grey background with white text */
.twc-malidc button[type="submit"]:hover {
background-color: grey !important;
color: white !important;
}
/* All other text on black background should be white */
.twc-malidc p,
.twc-malidc span,
.twc-malidc div,
.twc-malidc a {
color: white;
}