* {
    background-color: #015ca9;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    width: 100px;
    padding-right: 10px;
}

h1 {
    display: flex;
    align-items: center;
    color: #a9ce3a;
    justify-content: center;
}
h2 {
    color: black;
    background-color: #a9ce3a;
    text-align: center;
}

.confirm-box {
    background-color: #a9ce3a;
    padding: 30px;
    max-width: 400px;
    border-radius: 8px;

    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px auto;
}

form {
    background-color: #a9ce3a;
    padding: 30px;
    max-width: 400px;
    border-radius: 8px;

    width: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px auto;
}

select {
    flex: 1;
    font-size: 14px;
    background-color: white;
    border: 2px solid black;
    box-sizing: border-box;
    width: 100px;
}

textarea {
    flex: 1;
    min-height: 40px;
    resize: vertical;
    font-size: 14px;
    background-color: white;
    border: 2px solid black;
}

.field {
    background-color: #a9ce3a;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

div {
    background-color: #a9ce3a;
}

label {
    font-weight: bold;
    background-color: #a9ce3a;
    margin-bottom: 4px;
    width: 180px;
}
input {
    flex: 1;
    font-size: 14px;
    background-color: white;
    border: 2px solid black;
}

button {
    background-color: white;
    color: black;
    border-radius: 4px;
    border: 2px solid black;
    width: fit-content;
    align-self: center;
    cursor: pointer;
    -webkit-text-fill-color: #000000;
}

button:hover {
    background-color: #e6e6e6;
}


