/* WRAPPER */
.dog-kcal-form-wrapper {
    max-width: 550px;
    margin: auto;
    padding: 0 20px;
}

/* CARD */
.dog-kcal-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    font-family: 'Poppins', Arial, sans-serif;
}

/* TITLE */
.dog-kcal-form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
    font-family: 'Poppins', Arial, sans-serif;
}

/* SUBTITLE */
.dog-kcal-form-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* LABEL */
.dog-kcal-form label {
    display: block;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    font-size: 16px;
}

/* INPUT */
.dog-kcal-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 16px;
    background: #fafafa;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 18px;
    transition: 0.2s;
    box-sizing: border-box;
}

.dog-kcal-form input:focus {
    border-color: #ffcc00;
    background: #fff;
    outline: none;
}

/* CALCULATED TEXT */
.dog-kcal-form p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #222;
}

#kcal, #gramaj {
    color: #ff9900;
    font-weight: 700;
}

/* ERROR MESSAGES */
.dog-kcal-error-msg {
    color: #d00000;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
}

/* CAPTCHA */
.g-recaptcha {
    margin: 15px 0 20px;
}

/* BUTTON */
.dog-kcal-form button {
    width: 100%;
    padding: 16px;
    background: #ffcc00;
    border: none;
    border-radius: 25px;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 5px;
    transition: 0.2s;
    font-family: 'Poppins', Arial, sans-serif;
}

.dog-kcal-form button:hover {
    background: #ffdd44;
}

.dog-kcal-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* SUCCESS + ERROR */
.dog-kcal-wrapper {
    max-width: 550px;
    margin: 20px auto;
    padding: 0 20px;
}

.dog-kcal-success, .dog-kcal-error {
    padding: 15px 22px;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 20px;
}

.dog-kcal-success {
    background: #e7ffe7;
    border: 1px solid #a6e6a6;
    color: #1a7f1a;
}

.dog-kcal-error {
    background: #ffe5e7;
    border: 1px solid #f1b3b8;
    color: #b60014;
}

/* HONEYPOT */
.honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .dog-kcal-form {
        padding: 25px 20px;
    }

    .dog-kcal-form-title {
        font-size: 24px;
    }
}