body {
            margin: 0;
            padding: 50px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: url('https://www.dfoundations.co.in/images/indian-business-man.jpg') no-repeat center center fixed;
            background-size: cover;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 179, 159, 0.7) 0%, rgba(0, 97, 186, 0.7) 100%);
            z-index: 0;
        }

        .registration-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .registration-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-weight: 700;
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            height: 50px;
            border-radius: 8px;
            border: 1px solid #ddd;
            padding-left: 15px;
            font-size: 15px;
        }

        .form-control:focus {
            border-color: #00b39f;
            box-shadow: 0 0 0 0.2rem rgba(0, 179, 159, 0.25);
        }

        .btn-signup {
            background: linear-gradient(90deg, #00b39f 0%, #0061ba 100%);
            color: white;
            border: none;
            padding: 12px 0;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            margin-top: 10px;
            transition: all 0.3s;
            letter-spacing: 1px;
        }

        .btn-signup:hover {
            background: linear-gradient(90deg, #009882 0%, #004e96 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 97, 186, 0.3);
        }

        .text-danger {
            font-size: 0.875rem;
        }

        .location-fields {
            display: flex;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .location-fields {
                flex-direction: column;
                gap: 20px;
            }
        }