
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h2 {
    text-align: center;
    color: #4CAF50; 
    padding-top: 20px;
}


form {
    width: 60%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
}

input[type="text"], input[type="email"], input[type="password"], input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

    button[type="reset"] {
        background-color: #f44336; 
    }

    button:hover {
        opacity: 0.9;
    }


input[type="radio"] {
    display: none; 
}

    input[type="radio"] + label {
        padding: 10px;
        margin: 5px;
        background-color: #ccc;
        border-radius: 5px;
        cursor: pointer;
    }

    input[type="radio"]:checked + label {
        background-color: #4CAF50; 
        color: white;
    }

input[type="checkbox"] {
    display: none; 
}

    input[type="checkbox"] + label {
        padding: 10px;
        margin: 5px;
        background-color: #ccc;
        border-radius: 5px;
        cursor: pointer;
    }

    input[type="checkbox"]:checked + label {
        background-color: #007BFF; 
        color: white;
    }


a {
    text-decoration: none;
    color: #007BFF;
    font-size: 0.9rem;
}

    a:hover {
        color: #0056b3;
    }


div {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

    div > div {
        width: 48%;
    }


button[type="reset"], button[type="submit"] {
    width: 48%;
    display: inline-block;
    margin-top: 20px;
}

button[type="submit"] {
    margin-left: 4%;
}


footer {
    text-align: center;
    margin-top: 30px;
}

    footer a {
        display: inline-block;
        margin: 10px;
        font-size: 1rem;
        color: #4CAF50;
    }
