.c-box {
    width: 500px;
    /*height: 500px;*/
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 35px -5px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 35px -5px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 35px -5px rgba(0,0,0,0.4);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    padding: 0 30px 30px;
}

.c-box__logo-section {
    /*background: orange;*/
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-box__logo {
    height: 50px;
}

.c-box__header-section {
    /*background: purple;*/
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-box__title {
    font-size: 1.4rem;
    color: var(--breto-cool-gray);
}

.c-box__content-section {
    /*background: cyan;*/
    /*flex-grow: 1;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-form {
    /*background: blueviolet;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 30px 30px 30px;
}

.c-form__flash-section {
    /*background: magenta;*/
    width: 100%;
    display: flex;
}

.c-form__content-section {
    /*background: #0b5ed7;*/
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
}

.c-form__error-section {
    /*background: #959ea9;*/
    width: 100%;
    display: flex;
}

.c-form__action-section {
    /*background: #58151c;*/
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-top: 10px;
}

.c-flash-message {
    background-color: #cff4fc; /* Light blue background */
    border-left: 4px solid var(--breto-azure); /* Left blue border */
    color: #055160; /* Darker blue text */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.c-error-message {
    background-color: #f8d7da; /* Light red background */
    border-left: 4px solid #dc3545; /* Left red border */
    color: #721c24; /* Dark red text */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.c-form__input {
    background: transparent;
    border-radius: 0;
    height: 50px;
    margin: 7px 0;
    padding: 5px;
    border: none;
    border-bottom: 1px solid var(--util-gray);
    box-shadow: none;
}

.c-form__input:focus {
    background: #fff;
    border-bottom: 1px solid var(--breto-azure) !important;
    box-shadow: none;
    outline: 0;
    transition: border-bottom-color .2s linear;
}

.c-form__link {
    margin: 7px 0;
}

.c-form__action-button {
    display: flex;
    line-height: 1;
    height: 40px;
    min-width: 200px;
}

@media only screen and (max-width: 768px) {
    .c-box {
        width: 100%;
        /*height: 500px;*/
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 35px -5px rgba(0,0,0,0.4);
        -moz-box-shadow: 0px 0px 35px -5px rgba(0,0,0,0.4);
        box-shadow: 0px 0px 35px -5px rgba(0,0,0,0.4);
        border-radius: 3px;
        display: flex;
        flex-direction: column;
        padding: 0 15px 15px;
    }

    .c-box__logo-section {
        /*background: orange;*/
        height: 85px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .c-box__logo {
        height: 50px;
    }

    .c-box__header-section {
        /*background: purple;*/
        height: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .c-box__title {
        font-size: 1.4rem;
        color: var(--breto-cool-gray);
    }

    .c-box__content-section {
        /*background: cyan;*/
        /*flex-grow: 1;*/
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .c-form {
        /*background: blueviolet;*/
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 0 15px 15px 15px;
    }

    .c-form__flash-section {
        /*background: magenta;*/
        width: 100%;
        display: flex;
    }

    .c-form__content-section {
        /*background: #0b5ed7;*/
        width: 100%;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .c-form__error-section {
        /*background: #959ea9;*/
        width: 100%;
        display: flex;
    }

    .c-form__action-section {
        /*background: #58151c;*/
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        margin-top: 10px;
    }

    .c-form__link {
        align-self: flex-start;
    }

    .c-flash-message {
        background-color: #cff4fc; /* Light blue background */
        border-left: 4px solid var(--breto-azure); /* Left blue border */
        color: #055160; /* Darker blue text */
        padding: 15px;
        border-radius: 8px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .c-error-message {
        background-color: #f8d7da; /* Light red background */
        border-left: 4px solid #dc3545; /* Left red border */
        color: #721c24; /* Dark red text */
        padding: 15px;
        border-radius: 8px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .c-form__input {
        background: transparent;
        border-radius: 0;
        height: 50px;
        margin: 7px 0;
        padding: 5px;
        border: none;
        border-bottom: 1px solid var(--util-gray);
        box-shadow: none;
    }

    .c-form__input:focus {
        background: #fff;
        border-bottom: 1px solid var(--breto-azure) !important;
        box-shadow: none;
        outline: 0;
        transition: border-bottom-color .2s linear;
    }

    .c-form__action-button {
        display: flex;
        line-height: 1;
        height: 50px;
        min-width: 150px;
    }



}
