@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif; /* Use 'Montserrat' and a fallback */
    color: #979797;
    background-image: url("./../../assets/images/distributor-background.png");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh; /* Ensure full viewport height */
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Form styles */

.form-container {
    background-color: white;
    border-radius: 37px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

.form-control {
    border: 1px solid #979797;
    border-radius: 30px;
    box-shadow: 0 0.25rem #00000025;
}

.form-control:focus {
    border-color: #63C6BF;
    box-shadow: 0 0.25rem #00000025;
}

.bb-btn-primary {
    color: #FFF;
    background-color: #66CCCC;
    border-color: #66CCCC;
    border-radius: 30px;
}

.bb-btn-primary:active {
    color: #FFF;
    background-color: #018F91;
    border-color: #018F91;
}

.bb-btn-primary:hover {
    color: #66CCCC;
    background-color: #FFF;
    border-color: #66CCCC;
}

.bb-btn-outline-primary {
    color: #66CCCC;
    border-color: #66CCCC;
    border-radius: 30px;
}

.bb-btn-outline-primary:active {
    color: #FFF;
    border-color: #FFF;
    background-color: #66CCCC;
}

.bb-btn-outline-primary:hover {
    color: #66CCCC;
    border-color: #018F91;
    background-color: #018F91;
}

.bb-link {
    color: #979797;
    font-weight: bold;
    text-decoration: underline;
}

.bb-link:active {
    color: #66CCCC;
}

.bb-link:hover {
    color: #018F91;
}

/* Multistep form */

.step-indicator {
    margin: 20px 0;
    position: relative;
    padding: 0;
}

.step-items-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.step-item-container {
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: white;
    position: relative;
    color: #B6B5B5;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #B6B5B5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step-circle.active {
    background-color: #63C6BF;
}

.step-circle.active + div {
    color: #66CCCC;
}

.step-circle.completed {
    background-color: green;
}

.step-circle.completed + div {
    color: green;
}

.line {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    height: 2px;
    width: calc(100% - 3rem);
    background-color: #ccc;
    z-index: 0;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

