/* Wrapper styling */
.zadace-wrapper {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(200, 200, 200, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: #333;
}

/* Heading and paragraph */
.zadace-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.zadace-wrapper p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Form styling */
.zadace-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Input styling */
.zadace-wrapper form input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.2);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.zadace-wrapper form input[type="text"]:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

/* Form button styling */
.zadace-wrapper form button {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    color: #222;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

/* Hover effect for form button */
.zadace-wrapper form button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Make <a class="btn"> look like form button */
.zadace-wrapper a.btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 12px 25px;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    color: #222;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover effect for <a class="btn"> */
.zadace-wrapper a.btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
