html, body{
    width: 100%;
    height: 100%;
}

body{
    background-color: #23272a;
}

.page-connexion{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.page-connexion .container{
    display: block;
    width: 100%;
    max-width: 500px;
    margin: auto;
}
.page-connexion .logo{
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}
.page-connexion .form{
    margin-top: 20px;
}
.page-connexion .form .title{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}
.page-connexion .form .input{
    margin-top: 10px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    background-color: #23272a;
    border: 2px solid #fff;
    padding: 0 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}
.page-connexion .form .btn-submit{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    background-color: #fff;
    height: 40px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    color: #23272a;
}
.page-connexion .lien-acces{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    background-color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    color: #23272a;
    height: 40px;
    line-height: 40px;
}
.page-connexion .alert-danger{
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #f00;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
    margin-top: 10px;
}
