@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
	}
	
	*:focus {
		outline: none;
	}
	body {
		font-family: Arial;
		background: #EEF4FF; /* E6FFCD */
		margin-top: 0;
	}
	.login {
		margin: 10px auto;
		width: 300px;
	}
	.login-screen {
		background-color: #500;
		border: 2px solid #fff;
		padding: 20px;
		border-radius: 5px
	}
	
    .auth td {padding: 6px; font-size: 16px!important;}
    h3 {font-size: 24px!important;}

	.app-title {
		text-align: center;
		color: #FFF;
		margin-bottom: 20px;
		font-size: 14px;
	}

    .membre-login{
        background-color: #fff !important;
        border: 1px solid #999;
        border-radius: 8px;
        
        width: 100%;
        max-width: 350px;
        margin: auto;
        padding: 20px;
        text-align: center;
    }
	
	.login-form {
		text-align: center;
	}
	.control-group {
		margin-bottom: 10px;
	}
	
	input{
		text-align: center;
		background-color: #fff;
		border: 1px solid #777;
		border-radius: 3px;
		font-size: 14px;
		font-weight: 200;
		padding: 10px 0;
		width: 100%;
		transition: border .5s;
	}
	

    /* Change Autocomplete styles in Chrome*/
    input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:hover {
        font-size: 14px;
        border: 1px solid #777;
        -webkit-text-fill-color: black;
        -webkit-box-shadow: 0 0 0px 1000px #fff inset;
        transition: background-color 5000s ease-in-out 0s;
    }
    /* Change Autocomplete styles in Chrome*/


	/*
	.btn {
	  border: 2px solid transparent;
	  background: #f00;
	  color: #ffffff;
	  font-size: 16px;
	  line-height: 25px;
	  padding: 10px 0;
	  text-decoration: none;
	  text-shadow: none;
	  border-radius: 3px;
	  box-shadow: none;
	  transition: 0.25s;
	  display: block;
	  width: 250px;
	  margin: 0 auto;
	  cursor: pointer;
	}
	.btn:hover {
	  background-color: #d00;
	  color: #ccc;
	}
    */
	
	.login-link {
	  font-size: 12px;
	  color: #444;
	  display: block;
		margin-top: 12px;
	}

