﻿@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('reset.css');
/*@import url('notification.css');*/

html {
    margin: 0;
    padding: 0;
    background-image: url('./images/bg-medic.png') !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 11pt;
    display: block;
    width: 100%;
}

#rescu {
    display: none;
}

#page {
    display: block;
    margin: 220px auto 0 auto;
    width: 100%;
}

    #page h1 {
        text-align: center;
        color: #EA7B0D;
        font-size: 52px;
        margin-bottom:104px;
        font-weight: 100;
    }

    #page .box {
        margin: 0 auto;
    }

    #page .bloc {
        display: flex;
        position: relative;
        /*background-image: url('images/encart.png');*/
        background-repeat: no-repeat;
        background-position: top left;
        background-color: #FFFFFF;
        /*padding: 20px 100px 20px 100px;*/
        padding: 0;
        margin: 0 auto 50px auto;
        color: #404040;
        width: 750px;
        height: calc(318px - 40px);
        border-radius: 10px;
        -webkit-box-shadow: 5px 5px 10px -2px rgba(105,105,105,1);
        -moz-box-shadow: 5px 5px 10px -2px rgba(105,105,105,1);
        box-shadow: 5px 5px 10px -2px rgba(105,105,105,1);
    }

        #page .bloc > div:first-child {
            background-color: #F00;
            width: 40%;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            background: rgb(232,122,12);
            background: linear-gradient(170deg, rgba(232,122,12,1) 0%, rgba(163,87,12,1) 100%);
            color: #FFF;
            padding: 10px;
            vertical-align: middle;
        }

            #page .bloc > div:first-child h2 {
                margin-top: 30px;
                font-size: 24px;
            }

            #page .bloc > div:first-child p {
                font-size: 16px;
                padding-top: 20px;
            }

        #page .bloc > div:last-child {
            width: 60%;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            padding: 10px;
        }

            #page .bloc > div:last-child h2 {
                text-align: center;
                text-transform: uppercase;
                color: #555;
                margin: 5px auto 10px auto;
                font-size: 1.2em;
            }


.link_lost_cancel {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.element {
    margin: 0 0 20px 0;
    font-size: 13px;
    line-height: 20px;
}

a {
    color: #EA7B0D;
    text-decoration: none;
    cursor: pointer;
    transition-timing-function: ease;
    transition-duration: 0.75s;
    transform: translate3d(0%, 0px, 0px);
    font-size: 11px;
}

    a:hover {
        color: #EA7B0D;
        font-size: 14px;
    }

input[type=text], input[type=password], input[type=mail] {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #dcdcdc;
    padding: 5px 0 5px 0;
    font-size: inherit;
    color: #808080;
    resize: none;
    font-family: 'Open Sans', sans-serif;
    transition: border ease 0.25s;
    transform: translate3d(0%, 0px, 0px);
}

input[type=submit] {
    width: auto;
    background-color: #E87A0C;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    padding: 6px 12px;
    text-decoration: none;
    /*text-shadow: 0px 1px 0px #154682;*/
    font-size: inherit;
    margin: auto;
    text-transform: uppercase;
    line-height: 19px !important;
    cursor: pointer;
    transition-timing-function: ease;
    transition-duration: 1.25s;
    transform: translate3d(0%, 0px, 0px);
}

    input[type=submit]:hover {
        background-color: #EA7B0D;
        color: #ffffff;
    }

    input[type=submit]:disabled {
        background-color: #555555;
        color: #c0c0c0;
    }

.checkbox_container {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.checkbox_element {
    position: relative;
    width: 29px;
    height: 18px;
    border: 2px solid #c0c0c0;
    border-radius: 100px;
    background: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.cursor {
    right: 14px;
    background: #c0c0c0;
    position: absolute;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    transition-timing-function: ease;
    transition-duration: 0.25s;
    transform: translate3d(0%, 0px, 0px);
}

[checked="checked"] .cursor {
    right: 3px;
    background: #E87A0C;
}


@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
