*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(./img/joshua-kettle.jpg);
    background-position: center;
    background-size: cover; 
    position: relative;   
    display: flex;
    flex-direction: column;
}
section{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-login{
    width: 320px;
    border: 2px solid white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px;
    row-gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}
.form-login .logo {
    width: 90px;
    position: relative;
    padding: 10px;

}
.form-login .title{
    font-weight: 600;
    font-size: 25px;
}
.logo img{
    width: 100%;
    height: auto;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: space-between;
    row-gap: 20px;
}
label, input{
    width: 100%;
}
input{
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: transparent;
    margin-top: 10px;
    font-style: italic;
    font-weight: 300;
}
.button{
    width: 100%;
}
button{
    width: 100%;
    border-radius: 10px;
    background: #1494C8;
    color: #EDCC0F;
    font-weight: 900;
    letter-spacing: 5px;
    border: none;
    padding: 10px;

}
.copyright{
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
#copyright{
    font-size: 12px;
}

.attente .logo img{
    width: 120px;
    height: auto;
    padding: 20px 0;
}
.attente{
    display: flex;
    flex-direction: column;
}
.attente .logo{
    margin-bottom: 40px;
}
.attente .text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text h1{
    margin-bottom: 20px;
    font-size: 36px;
}
.text h2 {
    position: relative;
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 20px 50px;
    margin-bottom: 30px;
    /*background: linear-gradient(to left, rgba(255, 0, 0, 0) 0%, rgba(255,255,255,0.45) 50%, rgba(255, 0, 0, 0) 100%)*/
}

.text h2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to left, rgba(255, 0, 0, 0) 0%, rgba(255,255,255,0.45) 50%, rgba(255, 0, 0, 0) 100%);
}
.text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to left, rgba(255, 0, 0, 0) 0%, rgba(255,255,255,0.45) 50%, rgba(255, 0, 0, 0) 100%);
}
.text p{
    text-align: center;
}
