.form-style {
    width: 600px;
    margin: 60px auto;
    padding: 50px;
    background-color: #111;
    border: 2px solid red;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: "Titillium Web", sans-serif;
}

.form-style h2 {
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.form-style label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-style input,
.form-style textarea,
.form-style select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid red;
    background-color: #1a1a1a;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-style input:focus,
.form-style textarea:focus,
.form-style select:focus {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.form-style textarea {
    resize: vertical;
    min-height: 100px;
}

.form-style button {
    margin-top: 15px;
    padding: 15px;
    border-radius: 20px;
    border: 2px solid red;
    background-color: transparent;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-style button:hover {
    background-color: red;
    color: black;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    transform: translateY(-3px);
}
.search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.search-form .input {
    width: 250px;
    padding: 10px 15px;
    border-radius: 12px;
    border: 2px solid red;
    background-color: #1a1a1a;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-form .input:focus {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.search-form .search-button {
    padding: 10px 20px;
    border-radius: 12px;
    border: 2px solid red;
    background-color: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-form .search-button:hover {
    background-color: rgba(255,0,0,0.2);
    box-shadow: 0 0 10px rgba(255,0,0,0.4);
    transform: translateY(-2px);
}

.form-style .form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-style .form-field label {
    margin-bottom: 5px;
    font-weight: bold;
}

.cancel-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid red;
    background-color: transparent;
    color: white;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.cancel-button:hover {
    background-color: rgba(139, 0, 0, 0.7);
    color: white;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}
