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

body{
    background-color: #23272a;
}

.page-demande-acces{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.page-demande-acces .container{
    display: block;
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding-bottom: 20px;
}
.page-demande-acces .logo{
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}
.page-demande-acces .form{
    margin-top: 20px;
}
.page-demande-acces .form .title{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}
.page-demande-acces .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-demande-acces .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-demande-acces .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-demande-acces .alert-danger{
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #f00;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
    margin-top: 10px;
}
.page-demande-acces .alert-success{
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #255f31;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
    margin-top: 10px;
}
