body {
   background-color: #FFFFFF;
}
.logo img {
    width: 10rem;
    margin-top: 1rem;
}
.c-gray {
    color: #7c8081;
}
.btn {
    background-color: #f47920;
    border: white;
    font-weight: bold;
}
#nextBtn {
    margin-left: 0.5rem;
}
.form-step {display: none;}

.edit {
    color: #f47920;
}
.editInfo {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(2, 1fr);
}

.editFindings {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
}

.editPrescription {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
}

.error {
   text-align: center;
}
.image {
    width: 10rem;
    height: auto;
}
.invalid label {
    color: red;
}
.numbers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:450px;
    position: relative;
}
.numbers::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: .5rem;
    left: 1.8rem;
    flex: 1;
    z-index: 0;
    background-color: #f47920;
}
.number {
    width: 4rem;
    line-height: 4rem;
    border-radius: 50%;
    text-align: center;
    background-color:#f47920;
    color: white;
    font-size: 1.8rem;
    z-index: 2;
}
.icon-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 480px;

}
.icon-box-center{
    justify-content: center;
}
.icon-ele {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon-ele img {
    width: clamp(120px, 10vw, 250px);
    border-radius: 50%;
    -webkit-box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.1);
}
.icon-first {
    transform: translateY(-20%);
}
.icon-last {
    transform: translateY(30%);
}
.icon-last img {
    border-radius: 100%;
}
input[type="file"] {
    position: relative;
}

input[type="file"]::before {
    position: absolute;
    color: black;
    transform: translate(-1rem, -.5rem);
    background: #f47920;
    padding: 1rem 1rem;
    top: 0;
    right: -1rem;
    left: 0;
    text-align: center;
}
#findings1::before {
    content: 'Seite 1';
}
#findings2::before {
    content: 'Seite 2';
}
#prescription::before {
    content: 'Seite 1';
}