﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/

.rewards-input {
    padding-right: 40px;
}

.fa-percentage {
    font-size: 15px;
    padding: 0 15px;
    margin-bottom: 6px;
}

.form-container {
    display: flex;
    flex-direction: column;
    height: auto;
}

.header {
    padding: 10px;
    border-bottom: 1px solid #E3E3E3;
}

.main {
    display: flex;
    flex: 1;
    margin-top: 20px;
}

.sidebar {
    width: 30%;
}

.content {
    display: flex;
    justify-content: center;
    flex: 1;
}

.step-sidebar {
    width: 100%;
    background-color: #1849BD;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 30px;
}

.step {
    display: flex;
    align-items: center;
    padding: 30px 0;
    padding-left: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .step span {
        display: inline-block;
        width: 30px;
        height: 30px;
        background-color: white;
        color: #007bff;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        margin-right: 10px;
        font-weight: bold;
    }

    .step:hover {
        background-color: #0056b3;
    }

    .step.active span {
        background-color: #5297FF;
        color: white;
    }

.step-color {
    color: dodgerblue;
}

.button-container {
    padding-top: 20px;
}

.posId {
    margin-bottom: 10px;
}

.review-info {
    font-weight: bold;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #E3E3E3;
}

.step-info {
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 30px;
}

.form-content {
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 20px;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 10px;
}

    button:hover {
        background-color: #0056b3;
    }

