body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 100px;
    margin: 0;
}

h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.note {
    font-weight: bold;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"] {
    padding: 15px;
    border: 1px solid rgb(0, 0, 0);
    background-color: aliceblue;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    width: 100%;
}

.buttons {
    display: flex;
    justify-content: flex-end;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button.cancel {
    background-color: #f5f5f5;
    color: black;
    margin-right: 10px;
}

button.submit {
    background-color: #007bff;
    color: white;
}

button.submit:hover {
    background-color: #0056b3;
}

button.cancel:hover {
    background-color: #e0e0e0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

#message {
    color: #28a745; /* Green color for success */
    font-weight: bold;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #28a745;
    border-radius: 10px;
    width: 101%;
    background-color: #d4edda;
}