.text-box__middle {
    margin-left: 32px;
}

.listings_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
    color: var(--black-color);
    font-weight: 500;
}

.listings_message-p {
    font-size: var(--large-font);
    margin-bottom: 16px;
}

.listings_message-a:hover {
    color: var(--bg-color);
    cursor: pointer;
    text-decoration: underline;
}

.add-property-btn {
    width: 200px;
    height: 50px;
    margin-top: 32px;
    background-color: var(--bg-color);
    color: var(--black-color);
    border: none;
    border-radius: 8px;
    font-size: var(--medium-font);
    font-weight: bold;
    transition: all 0.15s ease-in-out;
}

.add-property-btn:hover {
    background-color: rgba(238, 185, 2, 0.9);
    color: var(--black-color);
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

.add-property-btn:active {
    transform: scale(0.95);
}

#sign-up-alert.hidden,
#overlay.hidden {
    display: none !important;
}
#sign-up-alert {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;

    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
    z-index: 10;
}
#sign-up-alert h2 {
    font-size: var(--large-font);
}
#sign-up-alert button {
    align-self: flex-end;
    font-size: var(--large-font);
    padding: 3px;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(93, 95, 94, 0.5);
    backdrop-filter: blur(3px);
    z-index: 5;
}
