@charset "utf-8";

#login-container,
#store-register,
#all-register {
    border: 1px solid #dee2e6;
    /* Bootstrapのデフォルトのborder色 */
    border-radius: 0.25rem;
    /* 角を丸める */
    background-color: #f8f9fa;
    /* Bootstrapのbg-lightの色 */
    padding: 1.5rem;
    /* p-4 のpadding (1.5rem = 24px) */
    margin-top: 1.5rem;
    /* my-4 (上下のmargin 1.5rem = 24px) */
    margin-bottom: 1.5rem;
    margin-left: 1rem;
    /* mx-3 (左右のmargin 1rem = 16px) */
    margin-right: 1rem;
}

#store-register {
    margin-top: 40px;
}

#not-account {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.progressline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 30px auto;
    position: relative;
}

.progress-line {
    position: absolute;
    width: 70%;
    height: 5px;
    background-color: black;
    top: 23%;
    left: 15%;
    z-index: 1;
}

.circle-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.progress-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.progress-target-text {
    font-weight: 600;
    color: black;
}


.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(197, 194, 194);
    position: relative;
    z-index: 2;
}

.active-circle {
    background-color: #007bff;
}

input::placeholder {
    font-size: 1rem;
}


@media (min-width: 768px) {

    #login-container,
    #store-register,
    #all-register {
        width: 60vw;
        margin: 40px auto;
    }

    #store-register {
        text-align: center;
        margin: 60px auto 60px;
    }

    .progressline {
        width: 60vw;
    }

    .progress-line {
        top: 28%;
    }

    .progress-text {
        font-size: 1rem;
    }

    .circle {
        width: 40px;
        height: 40px;
    }
}

@media(min-width: 2500px) {
    .progressline {
        width: 45vw;
    }

    .progress-text {
        font-size: 1.5rem;
    }

    .circle {
        width: 60px;
        height: 60px;
    }
}