/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.qr-pet-finder-wrapper {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
    padding: 20px;
}

.qr-pet-finder-title h3 {
    font-size: 14px;
}

.qr-pet-finder-field h4{
    font-size: 11px;
}

.qr-pet-finder-field {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pet_image {
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #EEE;
}

.pet_image_preview {
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #EEE;
}

.qr-pet-finder-subtitle {
    font-size: 16px;
    font-style: italic;
    color: #000;
    max-width: 480px;
    margin-bottom: 20px;
}

.qr-pet-finder-button,
.qr-pet-finder-button:hover {
    color: #000;
    margin-right: 20px;
    display: inline-flex;
    flex-flow: row;
    gap: 10px;
}

.qr-pet-finder-whatsapp-button,
.qr-pet-finder-whatsapp-button:hover {
    color: #000;
    margin-right: 20px;
    display: inline-flex;
    flex-flow: row;
    gap: 10px;
}

input#qr-recover,
input#qr-recover:hover {
    border: 0;
    background: none;
    color: inherit;
    padding: 0;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-align: left;
    text-transform: inherit;
}

.qr-error-msg {
    color: #F44336;
}

.qr-success-msg {
    color: #4CAF50;
}

@media (max-width:540px) {
    .qr-pet-finder-wrapper {
        display: block;
    }
}