﻿.onboarding-container {
    background-position: center center;
    background-size: cover;
    opacity: 1;
    position: relative;
    top: 0px;
    left: 0px;
    overflow: hidden;
    background: #EFF0F6;
    height: 100%;
    width: 100%;
}


White Box
.onboardingWhite-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255);
    min-width: 310px;
    max-width: 380px;
    min-height: 450px;
    max-height: 700px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 6px;
    margin-top: 60px;
}

    .onboardingWhite-box img {
        border-radius: 50%;
        width: 70%;
        height: auto;
        display: inline-block;
        padding-bottom: 25px;
    }

    .onboarding-header {
        height: 6%;
        width: 100%;
        text-align: center;
        padding-bottom: 1rem;
    }

    .onboarding-header span {
        width: 80%;
        height: 40px;
        display: inline-block;
    }

    .onboarding-header h3 {
        width: 80%;
        height: 40px;
        display: inline-block;
    }

.onboarding-content {
    height: 60%;
    width: 100%;
    text-align: center;
}

    .onboarding-content span {
        width: 80%;
        height: 18rem;
        display: inline-block;
    }

    .onboarding-content p {
        width: 80%;
        display: inline-block;
        height: 100%;
        margin: 0;
        padding: 0;
        padding-bottom: 1rem;
    }

.onboarding-controls {
    display: block;
    width: 100%;
    text-align: center;
    bottom: 3rem;
    position: relative;
    color: #F28E47;
    margin-top: 50px;
}

    .onboarding-controls span {
        width: 20px;
        height: 20px;
        margin: 5px;
        display: inline-block;
    }

    .onboarding-controls button {
        width: 50%;
        height: 40px;
    }
        BUTTON

        .btn-signUp {
    border: 2px solid gray;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    width: 260px;
    height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    color: #fff;
    background-color: #F28E47;
}
