/* Paste this CSS inside <style> tags in <head>, or link as separate file */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    color: #333;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #2c3e50;
}

form {
    background-color: #fff;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
}

input[type="text"],
input[type="number"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #2980b9;
}

p {
    font-size: 14px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.btn:hover {
    background-color: #1e8449;
}
.logout-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.logout-btn:hover {
    background-color: #c0392b;
}
.site-footer {
    color: #222222;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
margin: auto;
  width: 90%;
    box-sizing: border-box;
}

.site-footer p {
    margin: 0 auto;
}


#muslim_type_div {
    margin-top: 10px;
}

@media (max-width: 600px) {
    form {
        padding: 15px;
    }
}
