.content {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 50vw;
    height: 100vh;
    padding: 10rem 10rem;
}

@media (max-width: 1700px) {
    .content {
        width: 70vw;
        padding: 10rem 3rem;
    }
}

@media (max-width: 768px) {
    .content {
        width: 100vw;
        padding: 10rem 0.5rem;
        height: auto;
        min-height: 100vh;
    }
}

.bankidlogo {
    width: 100px;
    padding: 1rem;
}

.screenimage {
    display: flex;
    width: 80vw;
    height: 140vh;
    object-fit: cover;
}

@media (max-width: 1700px) {
    .screenimage {
        width: 50vw;
    }
}

@media (max-width: 768px) {
    .screenimage {
        display: none;
    }
}

.qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: fit-content; 
}

.qrimage {
    max-width: 100%;
    height: auto;
}

#retry {
    display: flex;
    flex-direction: column;
}

#mobile-bankid-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0rem;
    min-height: 1.5rem;
    min-width: 10rem;
}

#retry-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0rem;
    min-height: 1.5rem;
    min-width: 10rem;
}

.button-text {
    padding: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar::-webkit-progress-value {
  background-color: #ffc66a;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-bar::-webkit-progress-bar {
  background-color: #e5e7eb;
  border-radius: 4px;
}

.progress-bar::-moz-progress-bar {
  background-color: #e0e0e0;
  border-radius: 4px;
}

.placeholder {
    width: 14rem;
    height: 14rem;
    margin: 2px;
    border: 15px solid #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }
    50% {
        background-color: #cccccc;
    }
    100% {
        background-color: #fcfcfc;
    }
}

.instructions {
    padding: 1rem;
}

.instruction-text {
    font-weight: 300;
    font-size: 1rem;
    list-style-type: decimal;
    line-height: 2;
}