﻿body {
    padding: 0;
    margin: 0;
}

.box-error {
    min-height: 60px;
}

.img-loginLogo {
    width: 80%;
}

.blue-box, .background-image, .absolute-center, .menu-lang {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.menu-lang {
    right: 20px;
    top: 20px;
    left: unset;
}

    .menu-lang i.fa-angle-down, .menu-lang i.fa-angle-up {
        margin-left: 10px;
        color: #3962d5;
    }

    .menu-lang.open > .dropdown-menu {
        top: unset;
        left: unset;
        right: 0;
    }

    .menu-lang .flag-icon-background {
        width: 26px;
        border-radius: unset;
        height: 20px;
    }

    .menu-lang .dropdown-menu .flag-icon-background {
        margin-right: 20px;
    }

    .menu-lang .flag-text {
        padding-bottom: 5px;
    }

.absolute-center {
    margin: auto;
    width: 60%;
}

.form-login {
    margin-top: 10px;
    width: 100%;
    color: white;
}


    .form-login button {
        color: #3962d5;
    }

.normal-txt {
    color: white;
    font-weight: normal;
}

.blue-box {
    background-color: #3962d5;
}

.background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 41.66666666666667%;
}

.flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-center, .flex-horizontal-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-vertical-center, .flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-line, .flex-column {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-line {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}



/* The container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Bootsrap md */
@media (max-width: 1200px) {
    .background-image {
        left: 58.333333333333336%;
    }
}

/* Bootstrap xs */
@media (max-width: 768px) {
    .blue-box {
        bottom: 30%;
        width: 100%;
    }

    .background-image {
        z-index: -1;
        top: 70%;
        left: 0;
    }
}

@media (max-height: 700px) {
    .blue-box {
        bottom: 0;
    }

    .absolute-center {
        flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
    }
}

a {
    color: white;
}

    a:hover {
        color: white;
        cursor:pointer;
    }

    fieldset.help{
        margin-top : 40px;
    }