body {
    margin: 0;
}

h2 {
    padding: 0px 0px 0px 10px;
}


form {
    max-width: 100%;
    margin: 30px auto;
    padding: 20px;
    background: #fdfdfd;
    border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="date"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #aaa;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
    color: #000;
}

form button {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #444;
}



.row-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.row-actions .left,
.row-actions .right {
    flex: 1;
}

.row-actions .left form {
    text-align: left;
}

.row-actions .right form {
    text-align: right;
}