    body {
        font-family: Arial, sans-serif;
        max-width: 600px;
        margin: 50px auto;
        padding: 20px;
        background: linear-gradient(135deg, #012ffc 0%, #ff0000 100%);
    }
    .form-container {
        background-color: white;
        padding: 30px;
        border-radius: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    h1 {
        text-align: center;
        color: #333;
        margin-bottom: 30px;
    }
    .form-group {
        margin-bottom: 20px;
    }
    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #555;
    }
    .required::after {
        content: " *";
        color: red;
    }
    input[type="text"],
    input[type="password"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 10px;
        border: 2px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        box-sizing: border-box;
    }
    input:focus,
    textarea:focus {
        border-color: #007bff;
        outline: none;
    }
    .error {
        border-color: #dc3545 !important;
    }
    .error-message {
        color: #dc3545;
        font-size: 14px;
        margin-top: 5px;
        display: none;
    }
    button {
        background: linear-gradient(135deg, #012ffc 0%, #ff0000 100%);;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
    }
    button:hover {
        background-color: #0056b3;
    }
    .note {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }