* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background (Static Gradient) */
body {
    background: linear-gradient(135deg, #5f2c82, #49a09d);
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    text-align: center;
    padding: 25px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
}

/* Center Content */
.content {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Card */
.regForm {
    width: 380px;
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* Hover effect (no color change) */
.regForm:hover {
    transform: translateY(-5px);
}

/* Fieldset */
fieldset {
    border: none;
}

/* Title */
legend {
    font-size: 26px;
    font-weight: bold;
    color: #5f2c82;
    text-align: center;
    margin-bottom: 15px;
}

/* Labels */
label {
    font-weight: bold;
    color: #333;
}

/* Inputs */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0 18px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

/* Focus effect */
input:focus {
    border-color: #5f2c82;
    box-shadow: 0px 0px 6px rgba(95,44,130,0.4);
    outline: none;
}

/* Button */
input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Button hover */
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    text-align: center;
    padding: 15px;
}