/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #FFFFFF;
}

/* Header */
header {
    background-color: #4c4672; 
    color: #FFFFFF; 
    padding: 20px; 
    text-align: center; 
}

/* Links */
a {
    text-decoration: none;
    color: #0000FF;
    transition: color 0.3s ease;
}

a:hover {
    color: #000080;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #333333;
}

/* Text styles */
p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Alerts */
.alert {
    color: #FF0000;
    font-weight: bold;
}

/* Form styles */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    background-color: #F0F0F0;
    color: #333333;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 1px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #4c4672;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px; 
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #fbc00e;
}
