:root {
    --prompt-width: 600px;
    --outer-padding: 80px;
    --bg-color: #F7F7F6;
    --from-bg-color: white;
    --from-shadow: 0 12px 40px rgba(0,0,0,0.12);
    --from-radius: 5px;
    --divider-bg: gray;
}

@media (min-width:375px) and (max-width:768px) {
   :root {
    --prompt-width: 400px;
  }
}

@media (max-width: 375px) {
   :root {
    --prompt-width: 150px;
  }
}

.form {
    padding: var(--outer-padding);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.form-content {
    width: var(--prompt-width);
    background-color: var(--from-bg-color);
    box-shadow: var(--from-shadow);
    border-radius: var(--from-radius);
}

.form-content.view {
    padding: 10px;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
}

.divider::before, .divider::after {
    content: "";
    height: 1px;
    background: var(--divider-bg);
    flex: 1;
}

.divider .text {
    margin-right: 1rem;
    margin-left: 1rem;
    margin-top: 0px;
    margin-bottom: 0px;
    color: var(--divider-color);
}

.picture-container {
    text-align: center;
}

.picture-container .picture {
    width: 150px;
}

/*Stepper*/
.steps {
    flex-direction: row !important;
    padding: 0px;
}

.steps .steps-item:not(:last-child) {
    flex: auto;
    display: flex;
    align-items: center;
}

.steps .steps-item:not(:last-child):after {
    display: "block";
    content: "";
    flex: auto;
    height: 1px;
    margin-inline-end: 16px;
    background-color: var(--rz-base-300);
}