        body,
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Poppins', sans-serif;
        }

        .bg-overlay {
            background: rgba(0, 0, 0, 0.6);
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .signup-wrapper {
            position: relative;
            z-index: 2;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .signup-box {
            background-color: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            color: #333;
        }

        .form-group-custom {
            position: relative;
            /* margin-bottom: 1.5rem; */
        }

        .form-group-custom label {
            position: absolute;
            top: -10px;
            left: 15px;
            background: #fff;
            padding: 0 5px;
            font-size: 16px;
            color: #0A517F;
            font-weight: 500;
        }

        .form-group-custom input {
            border: 1px solid #0A517F;
            border-radius: 10px;
            padding: 14px 45px 14px 15px;
        }

        .form-group-custom select {
            border: 1px solid #0A517F;
            border-radius: 10px;
            padding: 14px 45px 14px 15px;
        }

        .form-group-custom input::placeholder {
            color: rgba(10, 81, 127, 0.6);
            font-size: 13px;
        }

        .form-group-custom .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
        }

        .toggle-password {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
        }

        .message {
            font-size: 14px;
            margin-bottom: 1rem;
            padding: 10px;
            color: #dc3545;
            background: rgba(255, 0, 0, 0.1);
            border-radius: 6px;
            text-align: center;
        }

        .message.success {
            color: #28a745;
            background: rgba(40, 167, 69, 0.1);
        }