body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pageContent {
    width: 100%;
    max-width: 500px;
    height: 100vh;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
}

.form-place{
    width: 90%;
}

.instagram-input{
    border-radius: 12px;
    background-color: #dbdbdb;
    width: 100%;
    height: 45px;
}

.howtoinput{
    width: 100%;
    text-align: left;
}

#inputInfo{
    text-align: left;
    font-weight: bold;
}

button{
    border: none;
}
.action-button{
    width: 100%;
    height: 45px;
    border-radius: 12px;
    background-color: #E1306C;
    color: #ffffff;
    font-weight: bold;
}

h5{
    margin-top: 6px;
}

.toast {
    visibility: hidden;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    transition: visibility 0s, opacity 0.3s, bottom 0.3s;
    opacity: 0;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    top: 60px;
}

.toast.hide {
    visibility: hidden;
    opacity: 0;
    top: 40px;
}

.overview{
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background-color: #000000b2;
    justify-content: center;
    align-items: center;
}

.loading{
    width: 80%;
    max-width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 16px;
    display: none;
    animation: popup 0.2s ease-in-out;
}

@keyframes popup {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#username{
    font-weight: bold;
    color: #C13584;
}

#process{
    color: #adadad;
    font-size: 0.8em;
}

.verify-place {
    width: 80%;
    max-width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 16px;
    display: none;
    animation: popup 0.2s ease-in-out;
}

.offers {
    text-decoration: none;
    margin-top: 4px;
}

.offer-load {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offerplace {
    display: flex;
    align-items: center;
    background-color: #eeeeee;
    border-radius: 8px;
    padding: 3px;
    gap: 4px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #E1306C;
}

.offerplace:hover {
    background-color: #e0e0e0;
}

.offer-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-img img {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    display: none;
}

.offer-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    font-size: 0.9em;
    color: #252525;
    padding: 3px 0px;
    text-align: center;
}

.offer-details #title {
    font-size: 1.1em;
    font-weight: bold;
    display: inline-block;
    max-width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.vfooter {
    width: 100%;
}