span,div {
    user-select: none;
}

html {
    font-size: 16px;
    font-weight: 300;
    height: 100svh;
}

body {
    font-family: 'Barlow Semi Condensed', sans-serif;
    background: #eaeaea;
    /* background: green; */
}

button {
    font-weight: 500 !important;
    width: 100%;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100svh;
}

.form-container {
    background: #f9f9f9;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    max-width: calc(90dvw - 20px);
    max-height: calc(90svh - 20px);
    height: 500px;
    width: 500px;
    overflow-y: auto;
}

.icon-box {
    background: #ededed;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 15px;
    height: 15px;
}

#form-fields {
    height: calc(100svh - 255px) !important;
    max-height: 310px;
    overflow-y: auto;
    display: none;
}

#form-navigation {
    margin-top: 5px;
    display: none;
}

#form-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
}

.form-field {
    flex-direction: column;
    height: 100%;
}

.form-field .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    flex-direction: column;
}

.form-field .content div {
    width: 100%;
}

.form-field .instruction {
    font-size: 0.85rem;
}

.form-field .instruction span {
    color:rgba(0,0,0,.65);
}

.sync-footer {
    text-align: left;
    color: rgba(0,0,0,.50);
    display: flex;
    align-items: center;
}

.sync-footer span {
    margin-left: 5px;
}

.sync-footer img {
    width: 20px;
}

.install-popup-box {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

.install-popup {
    width: calc(100vw - 20px);
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    margin-top: 7px;
}

.form-icon {
    width: 130px;
}

.signature-box-content {
    width: 350px;
    max-width: calc(100vw - 20px);
    font-size: 1.1rem;
}

#signature {
    background: white;
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    margin: 7px 0px;
}