
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


body {
    background: linear-gradient(135deg, #3a0ca3, #4361ee, #4cc9f0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


h1 {
    color: #aab093;
    margin-bottom: 25px;
    font-size: 38px;
    text-shadow: 0 3px 12px rgba(240, 240, 243, 0.3);
}


form {
    width: 450px;
    padding: 32px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 8px;
   
}


label {
    color: #e0c6c6;
    font-size: 15px;
    font-weight: bolder;
}
input{
    height: 40px;
    border-radius: 10px;
       border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.8);
    padding: 12px 14px;
    font-size: 15px;
}
button {
   margin-top: 30px;
    width: 150px;
    padding: 12px 0;
    font-size: 17px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    font-weight: bolder;
    transition: 0.3s ease;
    letter-spacing: 5px;
}


#SAVE {
    background: linear-gradient(135deg, #06d6a0, #1b9aaa);
    box-shadow: 0 4px 15px rgba(6,214,160,0.4);
}

#SAVE:hover {
    background: linear-gradient(135deg, #0ec997, #158d97);
    transform: translateY(-3px);
}


#RESET {
    background: linear-gradient(135deg, #ef233c, #d90429);
    box-shadow: 0 4px 15px rgba(239,35,60,0.4);
    margin-left: 12px;
}

#RESET:hover {
    background: linear-gradient(135deg, #d90429, #b80222);
    transform: translateY(-3px);
}


