/* Styl dla kalkulatora przeprowadzkowego - dostosowany do .input-primary */

body {
    font-family: "Montserrat", sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: rgb(32 180 107);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-field {
    margin-bottom: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-primary {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    color: #333;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    display: block;
}

.input-primary:focus {
    border-color: rgb(32 180 107);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(32, 180, 107, 0.5);
}

button {
    width: 100%;
    padding: 12px;
    background-color: rgb(32 180 107);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

button:hover {
    background-color: rgb(25, 150, 90);
}

.wpcf7-response-output {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.b-hero-form-contact__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.checkbox-primary {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    font-family: "Montserrat", sans-serif;
}

.checkbox-primary a {
    color: rgb(32 180 107);
    text-decoration: none;
}

.checkbox-primary a:hover {
    text-decoration: underline;
}