body {
    margin: 0;
    background: #f3f4f6;
    font-family: "Nunito", sans-serif;
}

.screen {
    width: 100%;
    min-height: 100vh;
    background-color: #909090;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 390px;
    min-height: 700px;

    background: rgb(237, 237, 237);
    border-radius: 24px;

}

.content {
    width: 340px;
    min-height: 555px;

    background: rgb(255, 255, 255);
    border-radius: 24px;

    display: flex;
    flex-direction: column;
    
    margin: 30px auto 15px auto;

}

.progress {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 300px;
    height: 30px;

    margin: 60px auto 20px auto;

}

.circle {
    width: 28px;
    height: 28px;

    box-sizing: border-box;
    border-radius: 50%;

    margin: 0 15px;

    background:
        linear-gradient(
            to bottom,
            #e1e1e1,
            #989898
        );

    border: 1px solid #5f5f5f;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.8),
        0 2px 4px rgba(0,0,0,0.12);
}

.circle.passed {
    background:
        linear-gradient(
            to bottom,
            #d9ffe7,
            #22c55e
        );

    border: 1px solid #16a34a;

    box-shadow:
        0 3px 8px rgba(34,197,94,0.35);
}

.circle.relevant {
    background: #d1d5db;

    border: 3px solid #22c55e;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.8),
        0 0 0 3px rgba(34,197,94,0.15),
        0 2px 4px rgba(0,0,0,0.12);
}

.icon {
    display: flex;
    justify-content: center;

    margin: 35px auto 0px;
}

.icon svg {
    width: 80px;
    height: 80px;

    color: #404040;
}

.title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;

    margin-bottom: 0px;

    color: #404040;
}

.description {
    text-align: center;
    font-size: 16px;
    font-weight: 300;

    margin: 0px auto;
}
.lineLong {
    width: 150px;
    height: 1px;

    background-color: #4040406a;

    margin: 30px auto;
}

.number-input:focus {
    outline: none;

    border-color: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34,197,94,0.15);
}

.number-input {
    width: 260px;
    height: 55px;

    margin: 10px auto 10px auto;

    box-sizing: border-box;

    border: 1px solid #d8d8d8;
    border-radius: 14px;

    background: #f8f8f8;

    font-size: 16px;
    text-align: center;

    color: #404040;

    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.next-button {
    width: 260px;
    height: 55px;

    display: flex;

    justify-content: center;
    align-items: center;

    margin: 10px auto;

    text-decoration: none;

    border: none;
    border-radius: 14px;

    background: linear-gradient(
        to bottom,
        #4ade80,
        #22c55e
    );

    color: white;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 4px 10px rgba(34,197,94,0.3);
}

form {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-icon {
    color: #ef4444;
}

.description.info {
    font-size: 16px;
}

.description.info.strong {
    font-weight: 700;
}

.next-button.red {
    background: linear-gradient(
        to bottom,
        #e35846,
        #e23812
    );
}

.infoFrame {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;

    width: 300px;
    min-height: 100px;

    margin: 10px auto;
}

.next-button.blue {
    background: linear-gradient(
        to bottom,
        #3b82f6,
        #1d4ed8
    );
}

.next-button.red.list {

    margin-top: auto;
    margin-bottom: 25px;

}

.listFrame {

    text-align: left;
    padding-left: 50px;
    font-weight: 600;


}


