/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #3a3a6a);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 0 20px rgba(9, 233, 80, 0.2);
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
}

/* Heading */
.form h2 {
    text-align: center;
    margin-bottom: 20px;

}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;  /* ✔ margin between fields */
}

/* Inputs + Select */
input, select {
    padding: 10px;   /* ✔ padding inside fields */
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 5px;
    transition: 0.3s;
}

/* Focus Effect */
input:focus, select:focus {
    border-color: #6a5acd;
    outline: none;
}

/* Options (Radio buttons using Flexbox) */
.options {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

/* Button */
button {
    padding: 12px;
    background: #6a5acd;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover Effect */
button:hover {
    background:  #EEAECA;
background: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}