


/* Heading styling */
h2 {
    text-align: center;
    color: #00A9E0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
}

/* Label styling */
label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

/* Input styling */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    background: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Dropdown styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300A9E0' width='24' height='24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    cursor: pointer;
}

input:focus, select:focus {
    border-color: #00A9E0;
    box-shadow: 0 0 3px rgba(0, 169, 224, 0.5);
    outline: none;
}

/* Button styling */
button {
    padding: 8px;
    background-color: #00A9E0;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #007bb8;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
        margin: 20px auto;
    }

    h2 {
        font-size: 18px;
    }

    button {
        font-size: 12px;
    }
}
