.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    justify-content: center;
    align-items: center;
    border: none;
}

.box {
    border-radius: 10px;
    padding: 20px;
    justify-content: center;
    align-items: center;
}

.phone-container {
    display: flex;
    align-items: center;
    width: 350px;
    height: 55px;
    border: 1px solid rgb(214, 214, 214);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black */
    display: none;
    /* Initially hidden */
    z-index: 1000;
    /* Ensure overlay appears above other content */
}
