html, body {
    font-size: 100%;
    margin: 0;
    padding: 0;
}

:focus {
    text-decoration: none!important;
    box-shadow: none!important;
}

h2 {
    font-size: 30px;
    color: #282323;
    text-align: left;
    margin-bottom: 15px;
}

#mainBloc {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
}

#bloc1 {
    font-size: 100%;
    display: flex;
    align-items: center;
}

#bloc2 {
    font-size: 100%;
    float: right;
}

.btn {
    padding: 6px 15px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    text-shadow: none;
    box-shadow: none;
    transition: all 0.12s linear 0s !important;
    border: none !important;
    border-radius: 3px !important;;
    color: #ffffff !important;
}

.btn-primary {
    background-color: #0aa699 !important;
}

.btn-primary:hover {
    background-color: #0090d9!important;
}

.roundedImage{
    overflow:hidden;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
    width:90px;
    height:90px;
    margin-right: 25px;
}

.control-form {
    color: #282323;
    outline: 0;
    height: 16px;
    padding: 6px 11px !important;
    line-height: 15px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: normal;
    background-color: #fff;
    min-height: 37px;
    filter: none !important;
    box-shadow: none !important;
    border-radius: 0px;
    border-radius: 2px;
    border: 1px solid #e5e9ec;
    transition: background 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

.control-form::placeholder {
    color: #6f7b8a80;
}

.control-form:focus {
    border-color: #e5e9ec!important;
    background-color: #f4f5f7!important;
    outline: 0 !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #f4f5f7!important;
}

.alert{
    color: #721c24 !important;
    border: none;
    background-color: transparent;
    padding: 0;
    padding-left: 5px;
    margin: 0;
    font-size: 12px;
    position: absolute;
    margin-top: -28px;
}

@media (max-width: 767px) {
    h2 {
        text-align: center;
    }
    
    #bloc1 {
        flex-direction: column;
        width: 100%;
    }
    
    #bloc2 {
        text-align: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 8px 0;
        margin-top: 20px;
    }
    
    .roundedImage{
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .control-form {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .alert{
        position: relative;
        text-align: left;
        margin-top: 0;
        margin-bottom: 5px;
    }
}