@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Playwrite DE Grund", cursive;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Header */
header h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-top: 20px;
}
header p {
    text-align: center;
    font-size: 13px;
    color: #333;
    max-width: 400px;
    margin-top: 20px;
}

/* Container for form */
.reclamaciones-container {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #555;
}

/* Form elements */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-size: 1rem;
}

input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #777;
}

/* Button */
button[type="submit"] {
    padding: 10px 20px;
    background-color: #f7047e;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

button[type="submit"]:hover {
    background-color: transparent;
    border: 2px solid #f7047e;
    color: #f7047e;
    padding: 10px;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .reclamaciones-container {
        width: 90%;
        padding: 10px;
        margin: 10px;
        box-sizing: border-box;
    }

    header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    label {
        font-size: 0.9rem;
    }

    input, textarea {
        font-size: 0.9rem;
    }

    button[type="submit"] {
        font-size: 1rem;
    }
}
