
   
    html, body {
		font-family: "Open Sans", Arial, sans-serif;
		color: #3d4b60;
        height: 100%;
        width: 100%;
        margin: 0;
		align-items: center;
		justify-content: center;
		background: transparent;
    }
	
	.main-container {
        align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 400px;
		margin: auto auto;
		background: transparent;
		position: relative;
    }
	
	@media screen and (min-width: 800px) {

	body {
		background: #eee;
	}
	
	.main-container {
		border-radius: 1em;
		box-shadow: 0 5px 15px rgba(0,0,0,.1);
		background: #fff;
	}
	
	}
	
	@media screen and (min-height: 800px) {

	body {
		display: flex;
	}
	
	}
    
    .link-container {
        align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 1em;
		transition: filter 0.3s ease;
    }
	


	/* Etat flouté */
	.blurred {
		filter: blur(1px);
		pointer-events: none; /* désactive les clics */
		opacity: 0.6;
	}
		
	.grecaptcha-badge { 
        visibility: hidden; 
    }
	
	button {
        height:20px;
		min-width:200px;
		border: 0.02px solid gray;
		border-radius:100em;
		cursor: pointer;
    }
	
	button:hover {
		filter: brightness(95%);
	}