.connecting {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f8;
}

.connecting .container {
    width: 100%;
    padding: 7px;
    max-width: 570px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #e3e5e9;
}
.connecting .container .header {
    gap: 7px;
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #cdced1;
}
.connecting .container .content .info {
    min-height: 180px;
    margin-bottom: 4px;
}
.connecting .container .content h4 {
    font-size: 15px;
    line-height: 20px;
}
.connecting .container .content p {
    font-size: 14px;
    line-height: 20px;
}

.connecting .buttons {
    gap: 7px;
    display: grid;
    margin-bottom: 10px;
    grid-template-columns: 1fr 1fr;
}
.connecting .buttons .continue {
    padding: 8px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    background-color: #4161f6;
}
.connecting .buttons .cancel {
    padding: 8px;
    color: #000;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    background-color: #e2e6e8;
}
.connecting span {
    margin: 4px 0;
    font-size: 12px;
    color: #88898b;
    font-weight: 500;
    display: inline-block;
}
.connecting span a {
    color: #4161f6;
}


@media only screen and (max-width: 640px) {
    .connecting .container {
        max-width: 90%;
    }
  }