/* General Body Style */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #00ff87, #7a00ff, #f9ff00); /* Green, Purple, Yellow gradient */
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Container for Forms and Notes */
.container {
    width: 60%;
    padding: 30px;
    background: #e0e0e0;
    border-radius: 20px;
    box-shadow: 9px 9px 16px #bebebe, -9px -9px 16px #ffffff;
    text-align: center;
}

/* Header Text Styling */
h1, h2 {
    color: #333;
    text-align: center;
}

/* Form Input Fields (Neumorphic Style) */
input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 90%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    background: #e0e0e0;
    box-shadow: inset 9px 9px 16px #bebebe, inset -9px -9px 16px #ffffff;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s ease;
}

/* Focus effect for input fields */
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    box-shadow: inset 3px 3px 5px #bebebe, inset -3px -3px 5px #ffffff;
}

/* Shiny, Glowing Button */
button {
    width: 90%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 30px;
    background: linear-gradient(145deg, #00ff87, #f9ff00, #7a00ff); /* Gradient background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 255, 135, 0.8); /* Glow effect */
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the button */
button:hover {
    box-shadow: 0 6px 20px rgba(0, 255, 135, 0.5), 0 0 30px rgba(0, 255, 135, 1);
    transform: translateY(-5px); /* Floating effect */
}

/* Button click effect */
button:active {
    transform: scale(0.98); /* Slight shrink on click */
    box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.3);
}

/* Neumorphic Notes Display */
.note {
    background: #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 5px 5px 12px #bebebe, -5px -5px 12px #ffffff;
    color: #333;
}

/* Style for Delete link */
a {
    color: #ff3333;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
