/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    color: #333;
}

h1 {
    text-align: center;
    color: #00509E;
}

form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

label {
    font-weight: bold;
}

input[type="text"], input[type="password"], textarea, select {
    width: 95%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #00509E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #003F7E;
}

/* Link Styles */
a:link {
    color: blue;
}

a:visited {
    color: purple;
}

a:hover {
    color: red;
    text-decoration: underline;
}

a:active {
    color: green;
}

section {
   
    padding: 15px;
    border: 2px solid #00509E;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
