*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

min-height:100vh;


    background:url("../assets/IMG_0947.JPG");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

padding:20px;

color:white;

}

.container{

max-width:550px;

margin:auto;

}

.page-header{

margin-bottom:25px;

}

.page-header h1{

font-size:30px;

margin-bottom:5px;

}

.page-header p{

color:#bdbdbd;

}

.card{

background:
rgba(255,255,255,.05);

backdrop-filter:
blur(8px);

-webkit-backdrop-filter:
blur(15px);

border:
1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:25px;

margin-bottom:20px;

}

.card h2{

margin-bottom:20px;

color:#D4AF37;

}

.input-group{

margin-bottom:18px;

}

.input-group label{

display:block;

margin-bottom:8px;

font-size:14px;

font-weight:500;

}

.input-group input{

width:100%;

padding:14px;

border-radius:12px;

border:
1px solid white;

background:
rgba(255,255,255,.05);

color:white;

outline:none;

font-size:15px;

}

.input-group input:focus{

border-color:#D4AF37;

}

#saveBtn{

width:100%;

padding:16px;

border:none;

border-radius:14px;

background:#D4AF37;

color:#111;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

#saveBtn:hover{

transform:translateY(-2px);

}

.top-back{

margin-bottom:20px;

}

.back-btn{

display:inline-block;

text-decoration:none;

color:white;

padding:10px 18px;

border-radius:50px;

background:
rgba(255,255,255,.05);

border:
1px solid rgba(255,255,255,.08);

}

.back-btn:hover{

background:
#D4AF37;

}

@media(max-width:768px){

body{

padding:15px;

}

.page-header h1{

font-size:26px;

}

.card{

padding:18px;

}

.input-group input{

padding:12px;

}

#saveBtn{

padding:14px;

}

}


#toast{

position:fixed;

top:20px;

left:50%;

transform:
translateX(-50%)
translateY(-100px);

padding:14px 20px;

border-radius:12px;

font-size:14px;

font-weight:500;

z-index:9999;

opacity:0;

transition:.3s ease;

backdrop-filter:blur(10px);

color:white;

max-width:90%;

text-align:center;

}

#toast.show{

opacity:1;

transform:
translateX(-50%)
translateY(0);

}

#toast.success{

background:
rgba(46,204,113,.95);

}

#toast.error{

background:
rgba(231,76,60,.95);

}

#toast.warning{

background:
rgba(243,156,18,.95);

}