html {
    display: flex;
    height: 100%;
}

body {
    font-family: Roboto, sans-serif;
    color: #848484;
    font-size: 1.6rem;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

img {
	max-width: 500px;
    max-height: 111px;
    width: 100%;
}

p {
    text-align: center;
    margin: 0;
}

.container {
	width: 100%;
    height: 100%;
    /*display: flex;
    align-self: center;*/
}

.flex {
    display: flex;
}

.form {
    height: 100%;
}

.align-column {
	flex-direction: column;
}

.align-center {
	align-items: center;
}

.form-mail {
	display: flex;
    height: 100%;
    justify-content: space-around;
}

.submit-button {
    background-color: #81ad22;
    font-style: normal;
    font-size: 2.5rem;
    font-family: Montserrat, sans-serif;
    color: #fff;
    padding: 15px 45px;
    border: 1px solid #81ad22;
    border-radius: 9px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    height: 81px;
    min-height: 81px;
}

::-moz-placeholder {
  opacity: 1;
  font-style: italic;
  color: #b5b5b5;
}

::-webkit-input-placeholder {
  font-style: italic;
  color: #b5b5b5;
}

:-moz-placeholder {
  opacity: 1;
  font-style: italic;
  color: #b5b5b5;
}

.mail-input {
    padding: 15px 15px 15px 15px;
    text-align: center;
    background-color: #f5f5f6;
    font-size: 2.1rem;
    line-height: 1.5;
    border: 1px solid #cecece;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.fade {
    transition: opacity .15s linear;
}

#mail-exists {
    position: absolute;
    right: 0;
    width: 100%;
    bottom: 28%;
}

#mail-exists p {
    max-width: 380px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    border-radius: 5px;
    background-color: #fdd;
    font-size: 17px;
}

.submited {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.hidden {
    /*opacity: 0; */
    display: none;
}

.change-lang-container {
    max-width: 500px;
    width: 100%;
    justify-content: space-evenly;
}

.change-lang {
    max-width: 90%;
    padding: 15px 20px;
    border-radius: 9px;
    background-color: #81ad22;
    color: #fff;
    cursor: pointer;
    height: 30px;
    min-height: 30px;
}

#lang-change-fr {
    display: none;
}

input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 1080px){
    .mail-input {
        width: 95%;
        padding: 40px;
    }
    .submit-button {
        width: 95%;
    }
}

@media screen and (max-width: 452px){
    .mail-input {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 362px){
    .mail-input {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 338px){
    .mail-input {
        font-size: 1.3rem;
    }
}