* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
}

header {
    background-color: #00264d;
    color: #fff;
    padding: 20px 0;
}

.header-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-container img {
    height: 50px;
}

header h1 {
    margin-top: 10px;
}

main {
    padding: 40px 0;
}

.form-container {
    width: 90%;
    max-width: 700px;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

input[type="text"],
input[type="date"],
input[type="password"],
select {
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px;
    background: transparent;
    font-size: 16px;
    margin-top: 5px;
}

.image-upload {
    border: 1px solid #ccc;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-upload input {
    margin-top: 8px;
}

footer {
    background: #111;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer-container {
    width: 90%;
    max-width: 700px;
    margin: auto;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-cols p {
    margin: 5px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.acknowledgement p {
    margin: 5px 0;
    font-size: 13px;
}

.acknowledgement a {
    color: #ccc;
    text-decoration: none;
}

.social a {
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social a:hover {
    color: #0a66c2;
}

button[type="submit"] {
    background-color: #0057a3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #004080;
    transform: scale(1.02);
}

button[type="submit"]:active {
    transform: scale(0.98);
}