@import url('https://fonts.googleapis.com/css2?family=Asul:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(rgba(255,248,241,.45),rgba(255,248,241,.45)),
    url("IMAGES/paysage-formulaire.PNG");

    background-size:cover;
    background-position:center;
}

.login-card{
    width:470px;
    background:rgba(255,252,248,.90);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    text-align:center;
    position:relative;

}

/* Décoration */

.login-card::before{
    content:"";
    position:absolute;
    top:20px;
    left:25px;
    width:90px;
    height:90px;
    background-size:contain;
    background-repeat:no-repeat;
    opacity:.20;
}

.login-card::after{
    content:"";
    position:absolute;
    right:20px;
    bottom:15px;
    width:110px;
    height:110px;
    background:url(images/citrons.png);
    background-size:contain;
    background-repeat:no-repeat;
    opacity:.25;

}

.login-logo{
    margin-bottom:20px;
}

.login-logo img{
    width:80px;
    height:auto;
}

.decor-line{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:30px;
    color:#80754e;
}

.decor-line span{
    width:70px;
    height:1px;
    background:#d8d1bf;
}

h1{
    font-family:'Asul',serif;
    font-size:45px;
    font-weight:400;
    color:#373323;
    margin-bottom:10px;
}

.subtitle{
    color:#80754e;
    margin-bottom:40px;
    font-size:16px;
}

form{
    text-align:left;
}

label{
    display:block;
    margin-bottom:8px;
    color:#373323;
    font-weight:500;
}

input{
    width:100%;
    height:50px;
    margin-bottom:25px;
    padding:0 18px;
    border:1px solid #ddd4bf;
    border-radius:8px;
    outline:none;
    background:white;
    font-size:15px;
    transition:.3s;
}

input:focus{
    border-color:#80754e;
    box-shadow:0 0 10px rgba(128,117,78,.15);
}

button{
    width:100%;
    height:52px;
    margin-top:10px;
    border:none;
    border-radius:30px;
    background:#80754e;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
    font-family: "Asul";
}

button:hover{
    background:#6c6443;
    transform:translateY(-2px);
}
