.contact {
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background-color: #000;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    align-items: center;
    justify-content: center;

}


/* Sekce formuláře */
.contact-section {
    width: 700px;
    height: 100%;
    max-height: 700px;
    padding: 40px;
    
}

.contact-section h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #ffffffdd;
}

/* Stylování <p> elementů v {{ form.as_p }} */
.contact-section form p {
    margin-bottom: 20px;
}

/* Labely */
.contact-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffffcc;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;

}

/* Vstupní pole a textarea */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background-color: #a1a1a1;
    color: #181818;
    font-size: 16px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.contact-section textarea {
    min-height: 120px;
    resize: none;

}

.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    background-color: #ffffff;
}

/* Tlačítko */
.contact-section button[type="submit"] {
    padding: 12px 20px;
    background-color: #000000;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    width: 100%;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.contact-section button[type="submit"]:hover {
    background-color: #404041;
}

/* Responsivita */
@media (max-width: 600px) {
    .contact-section {
        margin: 30px 15px;
        padding: 25px;
    }

    .contact-section h1 {
        font-size: 24px;
    }

    .contact-section input,
    .contact-section textarea {
        font-size: 15px;
    }

    .contact-section button[type="submit"] {
        font-size: 16px;
    }
}
