body {
    background-color: #FFF;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: rgb(36, 32, 32);
    border-radius: 10px;
    box-shadow: 2px 4px 0px #CD1619;
    padding: 20px;
    width: 60%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #FFF;
    /* Dark Red */
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.form-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 10px;
}

label {
    margin-bottom: 5px;
    color: #C7C3BF;
    /* Dark Grey */
}

input[type="text"],
input[type="number"],
textarea,
select {
    border: 1px solid #FFF;
    /* Dark Grey border */
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    background-color: #FFF;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background-color: #FFF;
    /* Light Blue */
    color: #CD1619;
    box-shadow: 2px 4px 0px #C7C3BF;
    /* White text */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

input[type="submit"]:hover {
    background-color: #CD1619;
    color: #FFF;
    /* Very Light Blue */
    box-shadow: 2px 4px 0px #880B18;
    /* Light Blue shadow */
}

input::placeholder,
textarea::placeholder {
    color: #C7C3BF;
    /* Light Grey placeholder text */
}

.form-options {
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    margin-bottom: 0;
}

.cache-controls {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #C7C3BF;
    width: 100%;
}

.cache-controls h3 {
    color: #FFF;
    margin-bottom: 15px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cache-button {
    background-color: #FFF;
    color: #CD1619;
    box-shadow: 2px 4px 0px #C7C3BF;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.cache-button:hover {
    background-color: #CD1619;
    color: #FFF;
    box-shadow: 2px 4px 0px #880B18;
}
