* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.form-section{
  display: flex;
  justify-content: center;
  align-items: center;

   background-color: #2a0139; 
}

        .form-container {
            background-color:#1e1e1e62;
          
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 700px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-top: 5rem;
            margin-bottom: 5rem;
            
        }

        h2 {
            text-align: center;
            color: #fff;
            margin-bottom: 20px;
            border-bottom: 2px solid #ff00e6;
            display: inline-block;
            padding-bottom: 5px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            color: #b0b0b0;
            font-weight: 600;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select {
            width: 100%;
            padding: 10px;
            background-color: #362335;
            border: 1px solid #444;
            border-radius: 5px;
            font-size: 16px;
            color: #fff ;
            transition: border 0.3s;
        }

        input:focus, select:focus {
            border-color: #ff00d9;
            outline: none;
       
        }
        input::placeholder{
            color: #666;
        }

        /* Radio Buttons Styling */
        .radio-group {
            display: flex;
            gap: 15px;
            margin-top: 5px;
          
        }

        .radio-option {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-weight: normal;
            color: #e0e0e0;
        }

        .radio-option input {
            margin-right: 5px;
            width: 18px;
            height: 18px;
            accent-color: #e24ee2;
        }

        /* Buttons */
        .btn-submit {
            width: 100%;
            padding: 12px;
          background: linear-gradient(135deg,#c94ae2,#8e00b2);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
           box-shadow: 0 5px 15px rgba(195, 74, 225, 0.4);
        }

        /* Error Message */
        .error {
            color: red;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        /* Success Message */
        .success-box {
            display: none;
            margin-top: 20px;
            padding: 15px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: 5px;
            text-align: center;
        }