/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 15px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

h1, h2 {
    color: #fff;
    margin: 0 0 20px 0;
}

p {
    margin-bottom: 30px;
}

/* Form Styles */
.content-section {
    background-color: rgba(51, 51, 51, 0.7);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

.input-group input:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.radio-group label {
    display: flex;
    align-items: center;
    color: #fff;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
    accent-color: #4CAF50;
}

/* Button Styles */
button[type="submit"],
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

button[type="submit"]:hover,
.cta-button:hover {
    background-color: #45a049;
}

/* Notification Styles */
.notification {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

.notification.success {
    background-color: #4CAF50;
    color: white;
}

.notification.error {
    background-color: #f44336;
    color: white;
}

/* Link Styles */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    font-size: 12px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .content-section {
        padding: 20px;
    }

    button[type="submit"],
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}
/* New styles for fieldset and legend */
fieldset {
    border: none;
    padding: 0;
    margin: 0 0 15px 0;
}

legend {
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
}