@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Quicksand:wght@400;500;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Quicksand,sans-serif;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:

linear-gradient(rgba(255,245,248,.7),rgba(255,245,248,.7)),
url("../images/bgheader.jpg");

background-size:cover;

background-position:center;

}

.login-box{

width:400px;

padding:45px;

background:rgba(255,255,255,.82);

backdrop-filter:blur(15px);

border-radius:30px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

h1{

font-family:"Playfair Display";

text-align:center;

color:#c8607e;

margin-bottom:8px;

}

.subtitle{

text-align:center;

margin-bottom:30px;

color:#777;

}

input[type=email],
input[type=password],
input[type=text]{

width:100%;

padding:15px;

margin-bottom:15px;

border:none;

outline:none;

border-radius:14px;

box-shadow:0 0 0 2px #f1d9e1 inset;

font-size:15px;

}

input:focus{

box-shadow:0 0 0 2px #c8607e inset;

}

button{

width:100%;

padding:15px;

border:none;

border-radius:15px;

background:#c8607e;

color:white;

font-weight:bold;

font-size:15px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#b54d6c;

transform:translateY(-2px);

}

.show-password{

display:flex;

gap:8px;

align-items:center;

margin-bottom:20px;

font-size:13px;

color:#666;

}

.quote{

margin-top:25px;

text-align:center;

font-size:13px;

font-style:italic;

color:#888;

line-height:1.7;

}

.error{

padding:12px;

margin-bottom:20px;

border-radius:12px;

background:#ffe4e4;

color:#d00000;

font-size:14px;

}