:root {
  --brand-color: #007C6F;
  --background-color: #EAEAEA;
  --text-secondary: rgba(30, 30, 30, 0.60);
  --text-disabled: rgba(30, 30, 30, 0.38);
  --field-error: #B00020;
  --dash: #B1B1B1;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;

    a {
        color: var(--brand-color);
        &:hover {
            color: var(--brand-color);
        }
    }

    h1,h2,h3,h4,h5 {
        font-weight: 700;
        text-transform: uppercase;
    }
}



.companyLogo {
    position: absolute;
    padding: 32px;
    margin-bottom: 16px;

    img {
        width: 158px;
        height: 52px;
    }
}

.content-wrapper {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    padding: 32px 0;
    justify-content: center;
    align-items: center;
    background: url('/register/aanekosken_energia/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

    .main-container {
        display: flex;
        flex-direction: column;
        max-width: 700px;
        height: 100%;
        padding: 32px;
        border-radius: 4px;
        background-color:white;
        opacity: 0.8;


        .stepper {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 48.5px;

            .step {
                display: flex;
                gap: 10px;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 157%;
                letter-spacing: 0.1px;
            }

            .number {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                background-color: var(--text-disabled);
                color: white;
            }

            .dash {
                border-top: 1px solid var(--dash);
                width: 20px;
                height: 1px;
            }
        }

        .header {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 16px;

            h5 {
                margin: 0;
                padding: 0;
                font-size: 24px;
                line-height: 133.4%;
            }

            .info {
                color: var(--text-secondary);
            }
        }

        .form {
            display: flex;
            flex-direction: column;
            padding-left: 10px;
            padding-right: 10px;

            hr {
                width: 100%;
                border-top: 1px solid var(--dash);
            }

            .account-type {
                display: flex;
                flex-direction: column;
                gap: 16px;
                padding: 16px;
            }

            .strong-identification {
                font-size: 14px;
                font-weight: 500;
                line-height: 157%;
                letter-spacing: 0.1px;
                color: var(--text-secondary);
            }
        }
    }
}

@media(max-width: 767px) {
    .stepper {
        display: none !important;
    }

    .content-wrapper {
        padding: 0;
        padding-top: 100px;
    }
}

@media(max-width: 1099px) {
    .content-wrapper {
        padding-top: 100px;
    }
}

.active {
    background-color: var(--brand-color) !important;
}

button {
    padding: 8px;
    border-radius: 10px;
    border: none;
    background-color: var(--brand-color);
    color: white;
}

.errors {
    color: var(--field-error);
}