﻿/****MODIFICATION DES COULEURS DE LA PAGE D'ACCUEIL'*****/
.validation-button, .button-ask-new-password {
    background-color: #33cefb !important;
    color: white;
}

.input.is-active, .input.is-focused, .input:active, .input:focus, .textarea.is-active, .textarea.is-focused, .textarea:active, .textarea:focus {
    border-color: #33cefb !important;
    box-shadow: 0 0 0 0;
}
/****FIN*****/

#appLogin, #appPassword {
    min-height: 100vh;
    background-color: white;
}

.logo-header {
	height: 200px;
	background: url('images/header.png')center center no-repeat;
	align-items: center;
}

.login-form-wrapper .field-box .login-heading {
	font-size: 1.95em;
}

.login-btn-group {
    text-align: center;
}

.login-form-wrapper .field-box .login-btn-group .forgot-link {
    color: #777777;
    font-size: 0.85em;
}

.login-form-wrapper .field-box .login-btn-group .forgot-link:hover {
	color: #33cefb;
	font-size: 0.85em;
}
/****SWITCH PUBLICMARKET USER****/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #33cefb;
    -webkit-transition: .4s;
    transition: .4s;
}

.part-color {
    color: #33cefb;
}

.pro-color {
    color: green;
}

.public-market-connexion {
    background-color: #33cefb;
}

.public-market-connexion.is-pro {
    background-color: green;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: green;
}

input:focus + .slider {
    box-shadow: 0 0 1px green;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/****END SWITCH PUBLICMARKET USER****/
